<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>Minecrafting for Mac

Ironing out the bugs, fixing the glitches and building in Minecraft with style.</description><title>❒ Minecraft for Mac </title><generator>Tumblr (3.0; @minecraftformac)</generator><link>http://minecraftformac.com/</link><item><title>I don't know how to get to my minecraft.jar folder or my bin folder. I need help because i want to get flans plane mod but i can't because i can't find minecraft folder! it isn't in my application support</title><description>&lt;p&gt;Hi there.&lt;/p&gt;

&lt;p&gt;This causes a lot of confusion. Mojang could solve this in a stroke if it only made the ‘Open Texture Pack Folder’ button work. Sadly us Mac users are so used to things ‘just working’ that we often don’t know how the underlying file system works. This is usually fine but when you are playing a cutting edge multi-platform Indie game and wanting to apply mods then you are going to have to get your hands dirty.&lt;/p&gt;

&lt;p&gt;I’ve done a Modding Tutorial on YouTube with Terminal Code to make it all work easily but if you want to mod by hand you need I know the following:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;Minecraft.jar is in bin. &lt;/li&gt;
&lt;li&gt;bin is in minecraft&lt;/li&gt;
&lt;li&gt;minecraft is in Application Support&lt;/li&gt;
&lt;li&gt;&lt;em&gt;your&lt;/em&gt; Application Support is in &lt;em&gt;your&lt;/em&gt; Library. &lt;/li&gt;
&lt;li&gt;Your Library is in [your Mac username] folder. &lt;/li&gt;
&lt;li&gt;Your username folder is in Users. &lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Another way to say this is:&lt;/p&gt;

&lt;p&gt;/Users/[your Mac username]/Library/Application Support/minecraft&lt;/p&gt;

&lt;p&gt;Even easier is:&lt;/p&gt;

&lt;p&gt;~/Library/Application Support/minecraft&lt;/p&gt;

&lt;p&gt;Use Finder, go to the Go menu. Choose Go To Folder and the type ~/Library&lt;/p&gt;

&lt;p&gt;This is your (hidden) Library folder. Inside you will find your Application support etc.&lt;/p&gt;

&lt;p&gt;You have, by the sound of it, been looking at the general system Library and Application Support which are, confusingly, not hidden.&lt;/p&gt;

&lt;p&gt;The above works whether yours is hidden or not and will give you access to Minecraft folders.&lt;/p&gt;

&lt;p&gt;If you still need help navigating please see my YouTube channel and the ‘Finding Your Folders’ video.&lt;/p&gt;

&lt;p&gt;Have fun!&lt;/p&gt;</description><link>http://minecraftformac.com/post/22437211561</link><guid>http://minecraftformac.com/post/22437211561</guid><pubDate>Sat, 05 May 2012 10:17:12 +0100</pubDate></item><item><title>I'm just a little worried I that if I buy minecraft it won't work on my macbook pro. I recently got my mac maybe 3 weeks ago and I was just wondering if I can just purchase minecraft and just play right away</title><description>&lt;p&gt;Hey there.&lt;/p&gt;

&lt;p&gt;Don’t worry! My Mac, a MacBook Pro, was bought back in 2008.&lt;/p&gt;

&lt;p&gt;It still works as good as new and plays Minecraft just fine. Any Intel-based Mac is fine, even Mac Minis and Laptops.&lt;/p&gt;

&lt;p&gt;You are good to go my friend!&lt;/p&gt;</description><link>http://minecraftformac.com/post/22255664481</link><guid>http://minecraftformac.com/post/22255664481</guid><pubDate>Wed, 02 May 2012 15:27:09 +0100</pubDate></item><item><title>Adding Mods to Minecraft made really easy for Mac users</title><description>&lt;p&gt;Ok&amp;#8230; you lucky lucky people. I&amp;#8217;ve just spent quite a few hours trying to work out just how to make modding easier for Mac users.&lt;/p&gt;

&lt;p&gt;A lot of issues arise for people. The biggest stumbling block is the fact that Minecraft uses hidden files and folders on your Mac. The next problem is you need to use Terminal commands to mod your Minecraft properly (it&amp;#8217;s &lt;strong&gt;not&lt;/strong&gt; just a case of unzipping files).&lt;/p&gt;

&lt;p&gt;So&amp;#8230; I&amp;#8217;ve made two lines of code to paste that&amp;#8217;ll help you get in and out of Terminal really quickly. I&amp;#8217;ve called them &amp;#8216;Unjar&amp;#8217; and &amp;#8216;Rejar&amp;#8217;.&lt;/p&gt;

&lt;p&gt;Take a look at the video to see how it&amp;#8217;s done and copy the code below to make it all work.&lt;/p&gt;

&lt;iframe width="480" height="244" src="http://www.youtube.com/embed/L1Y6y-T6YyQ" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;

&lt;h3&gt;What you need to do is this&lt;/h3&gt;

&lt;p&gt;1) Copy (cmd-c) this line of code:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;cd ~/Desktop &amp;amp;&amp;amp; mkdir ADD_MOD_FILES_HERE &amp;amp;&amp;amp; cd ADD_MOD_FILES_HERE &amp;amp;&amp;amp; jar xf ~/Library/Application\ Support/minecraft/bin/minecraft.jar&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;2) Open Terminal (in Applications&amp;gt;Utilities&amp;gt;Terminal), paste (cmd-v) the code, hit enter&lt;/p&gt;

&lt;p&gt;3) Drag your mod files into the &amp;#8216;ADD_MOD_FILES_HERE&amp;#8217; folder we&amp;#8217;ve just made on your desktop&lt;/p&gt;

&lt;p&gt;4) Copy this line of code:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;cd ~/Desktop/ADD_MOD_FILES_HERE &amp;amp;&amp;amp; rm META-INF/MOJANG_C.* &amp;amp;&amp;amp; jar uf ~/Library/Application\ Support/minecraft/bin/minecraft.jar ./ &amp;amp;&amp;amp; cd .. &amp;amp;&amp;amp; rm -rf ADD_MOD_FILES_HERE&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;5) Paste (cmd-v) this line into Terminal&lt;/p&gt;

&lt;p&gt;6) Run Minecraft&lt;/p&gt;

&lt;hr&gt;&lt;p&gt;Please let me know how this works for you, and report any issues using the &lt;a href="http://minecraftformac.com/ask" target="_blank"&gt;&amp;#8216;Help, Requests, Praise&amp;#8217;&lt;/a&gt; button.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19686390830</link><guid>http://minecraftformac.com/post/19686390830</guid><pubDate>Wed, 21 Mar 2012 18:49:00 +0000</pubDate><category>download</category><category>minecraft</category><category>modding</category><category>tools</category></item><item><title>hey my name is ben and i'm wondering if minecraft can hurt my macbook, i'm not sure if it's a macbook pro or not.</title><description>&lt;p&gt;Hi Ben.&lt;/p&gt;

&lt;p&gt;Minecraft, from Mojang, can’t hurt your MacBook.&lt;/p&gt;

&lt;p&gt;It may make it run a little warm, but I’ve looked at the stats and the values are all within acceptable levels. It’s a Java app and Java is safe and secure.&lt;/p&gt;

&lt;p&gt;You &lt;em&gt;might&lt;/em&gt; put your security at risk if you use any mods or changes from other developers, I think the risk is low but it’s always worth asking if you trust the publisher of ANY code you run on your machine.&lt;/p&gt;

&lt;p&gt;I’ve looks for Minecraft/Mac issues and found nothing to be unduly worried about. But, it’s always good to be cautious.&lt;/p&gt;

&lt;p&gt;Great question, thanks for popping by&lt;/p&gt;

&lt;p&gt;M@M4M&lt;/p&gt;

&lt;p&gt;PS: Thanks for using your name Ben, that’s much more interesting than “Anonymous” and makes me want to reply!&lt;/p&gt;</description><link>http://minecraftformac.com/post/19625760088</link><guid>http://minecraftformac.com/post/19625760088</guid><pubDate>Tue, 20 Mar 2012 13:48:20 +0000</pubDate></item><item><title>I cracked minecraft so whenever I put the folder in the "texturepacks" file it doesnt show up in the game</title><description>&lt;p&gt;Download (&lt;a href="http://www.minecraft.net/download" target="_blank"&gt;http://www.minecraft.net/download&lt;/a&gt;) and buy the game.&lt;/p&gt;

&lt;p&gt;Then I can help.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19573423850</link><guid>http://minecraftformac.com/post/19573423850</guid><pubDate>Mon, 19 Mar 2012 15:00:06 +0000</pubDate></item><item><title>when i push my alt key in the go section of finder, library doesnt come up. do you know whats wrong?</title><description>&lt;p&gt;Push and hold, it should appear, in Lion at least.&lt;/p&gt;

&lt;p&gt;Otherwise…&lt;/p&gt;

&lt;p&gt;Just use Finder. Use the Go, Go To Folder, menu option. Then type&lt;/p&gt;

&lt;p&gt;~/Library&lt;/p&gt;

&lt;p&gt;that will be your user’s library and then you can find Application Support and minecraft&lt;/p&gt;</description><link>http://minecraftformac.com/post/19522559580</link><guid>http://minecraftformac.com/post/19522559580</guid><pubDate>Sun, 18 Mar 2012 18:00:05 +0000</pubDate></item><item><title>I've been trying to use texture pack in minecraft and they don't show in the game. I've search around for help but everything I try doesn't work. I use the 1.1 version, I've downloaded texture packs both HD- and SDpacks, I've tried to use the file from the trash and I've tried to zip the folder the my mac makes for me. I used MCpatcher-2.3.2 01 to patch, but it won't work. What am I doing wrong?</title><description>&lt;p&gt;I don’t use MCPatcher, there is no need (unless you want HD packs).&lt;/p&gt;

&lt;p&gt;Just put the file from the trash in the right folder and it’ll work.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19513286673</link><guid>http://minecraftformac.com/post/19513286673</guid><pubDate>Sun, 18 Mar 2012 15:00:06 +0000</pubDate></item><item><title>How to request a video on Minecraft for Mac</title><description>&lt;iframe width="400" height="225" src="http://www.youtube.com/embed/DIfhJGjbdbo?wmode=transparent&amp;autohide=1&amp;egm=0&amp;hd=1&amp;iv_load_policy=3&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;showsearch=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;How to request a video on Minecraft for Mac&lt;/p&gt;</description><link>http://minecraftformac.com/post/19467855202</link><guid>http://minecraftformac.com/post/19467855202</guid><pubDate>Sat, 17 Mar 2012 19:57:07 +0000</pubDate></item><item><title>how do you find your username</title><description>&lt;p&gt;1) Start Minecraft
2) Before you login go to options
3) Find your username there&lt;/p&gt;</description><link>http://minecraftformac.com/post/19461783571</link><guid>http://minecraftformac.com/post/19461783571</guid><pubDate>Sat, 17 Mar 2012 18:00:05 +0000</pubDate></item><item><title>I recently deleted the minecraft folder in application support because mine craft black screened. Now when I try to log in an error saying "(not downloaded)". I've tried redownloading minecraft but the application support folder doesn't show up. Can anyone help?</title><description>&lt;p&gt;1) DELETE EVERYTHING in the BIN folder - that’s at ~/Library/Application Support/minecraft/bin&lt;/p&gt;

&lt;p&gt;2) Download Minecraft from minecraft.net&lt;/p&gt;

&lt;p&gt;3) Run it for the first time, it’ll create a new bin folder and will work.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19452987243</link><guid>http://minecraftformac.com/post/19452987243</guid><pubDate>Sat, 17 Mar 2012 15:00:05 +0000</pubDate></item><item><title>minecraft is in applications, but the minecraft folder doesn't show up in Application support</title><description>&lt;p&gt;Just use Finder. Use the Go, Go To Folder, menu option. Then type&lt;/p&gt;

&lt;p&gt;~/Library&lt;/p&gt;

&lt;p&gt;that will be your user’s library and then you can find Application Support and mine craft&lt;/p&gt;</description><link>http://minecraftformac.com/post/19406492587</link><guid>http://minecraftformac.com/post/19406492587</guid><pubDate>Fri, 16 Mar 2012 19:02:06 +0000</pubDate></item><item><title>Can ayone tell me how to change skins? It's so hard....</title><description>&lt;p&gt;It’s pretty easy really.&lt;/p&gt;

&lt;p&gt;1) Go to &lt;a href="http://www.minecraftskins.com/" target="_blank"&gt;http://www.minecraftskins.com/&lt;/a&gt; and find a skin you like, download it.
2) Go to &lt;a href="http://www.minecraft.net/profile" target="_blank"&gt;http://www.minecraft.net/profile&lt;/a&gt;
3) Click Choose File to upload your skin
4) Find your skin (probably in ‘Downloads’)
5) Upload
6) That’s it.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19399339515</link><guid>http://minecraftformac.com/post/19399339515</guid><pubDate>Fri, 16 Mar 2012 15:47:06 +0000</pubDate></item><item><title>Minecraft for the Mac has become totally annoying on our school machines. How on earth can this be totally removed and/or blocked? We have a dual platform environment. Our network is on Windows Active Directory so there is no way that we can centrally manage the stupid Mac machines. Is there a one-click uninstaller for the Mac available?</title><description>&lt;p&gt;There is no ‘one click’ installer for Mac (or PC or Linux).&lt;/p&gt;

&lt;p&gt;You need to delete the Minecraft.app file in Applications.&lt;/p&gt;

&lt;p&gt;You also need to delete ~/Library/Application Support/minecraft&lt;/p&gt;

&lt;p&gt;Empty trash, done.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19351299417</link><guid>http://minecraftformac.com/post/19351299417</guid><pubDate>Thu, 15 Mar 2012 18:13:06 +0000</pubDate></item><item><title>it does not give me the house icon in my finder all it say is favourite when i try to instal mods</title><description>&lt;p&gt;Just use Finder. Use the Go, Go To Folder, menu option. Then type&lt;/p&gt;

&lt;p&gt;~/Library&lt;/p&gt;

&lt;p&gt;that will be your user’s library and then you can find Application Support and minecraft&lt;/p&gt;</description><link>http://minecraftformac.com/post/19344970317</link><guid>http://minecraftformac.com/post/19344970317</guid><pubDate>Thu, 15 Mar 2012 15:03:05 +0000</pubDate></item><item><title>hi, my son have an account and installed minecraft... when he tries to launch a warning comes up, we click run and the window only stays black - have a mac mini dualcore...//thanks, mike</title><description>&lt;p&gt;Hi Mike.&lt;/p&gt;

&lt;p&gt;Mac sure you have the latest version of Java installed.&lt;/p&gt;

&lt;p&gt;This will help: &lt;a href="http://www.java.com/en/download/faq/java_mac.xml" target="_blank"&gt;http://www.java.com/en/download/faq/java_mac.xml&lt;/a&gt;&lt;/p&gt;</description><link>http://minecraftformac.com/post/19296939741</link><guid>http://minecraftformac.com/post/19296939741</guid><pubDate>Wed, 14 Mar 2012 18:00:05 +0000</pubDate></item><item><title>When using certain Texture packs things like Water and lava dont appear at all, everything else works fine what is wrong?</title><description>&lt;p&gt;The texture pack is either out of date or just badly designed. The answer is in your question… “certain” packs are not working. And “certain” designers are not doing a good job.&lt;/p&gt;

&lt;p&gt;Whenever Minecraft is updated you need to get a texture that matches your Minecraft version. For example, if they add Monkeys into the next version of the game, when you update you won’t see the monkeys. Not until your texture pack designer releases an update with the Monkey graphics added.&lt;/p&gt;

&lt;p&gt;Lava and Water are also animated features of the game, so the texture designer has to make sure they’ve added all the animation frames.&lt;/p&gt;

&lt;p&gt;A good texture pack designer will let you know which version of Minecraft it’s designed for 1.1, 1.2 etc.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19290943143</link><guid>http://minecraftformac.com/post/19290943143</guid><pubDate>Wed, 14 Mar 2012 15:00:05 +0000</pubDate></item><item><title>I did as the video said and got around the bug but still the texture packs I put in there are greyed out. Why?</title><description>&lt;p&gt;It’s greyed out because it’s not a valid texture.zip.&lt;/p&gt;

&lt;p&gt;Make sure you zip the files and folders and not the folder.&lt;/p&gt;

&lt;p&gt;You can also find the original zip file in the Trash.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19242309256</link><guid>http://minecraftformac.com/post/19242309256</guid><pubDate>Tue, 13 Mar 2012 18:00:06 +0000</pubDate></item><item><title>how do you eat on minecraft with a mac</title><description>&lt;p&gt;You need the food in your hand, and then click and hold the right-mouse button (or ctrl-click) to eat. See the last post for more on advice for people with one-button Macs and trackpads.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19236328252</link><guid>http://minecraftformac.com/post/19236328252</guid><pubDate>Tue, 13 Mar 2012 15:00:05 +0000</pubDate></item><item><title>We're running Minecraft on a MacBook Air and we can't break any blocks with the pick axe. We're using a 2-button mouse (Magic Mouse) but to no avail. Any suggestions? Thanks!</title><description>&lt;p&gt;This all depends on how your MacBook Air is set up.&lt;/p&gt;

&lt;p&gt;It is hard with a trackpad, so using a mouse is a good idea, but the Magic Mouse operates in a similar way to a trackpad (it’s not a physical button).&lt;/p&gt;

&lt;p&gt;A lot of players, including &lt;a href="http://twitter.com/#!/MinecraftTeachr/status/178181161422553089" target="_blank"&gt;@MinecraftTeachr&lt;/a&gt; change their key-bindings&lt;/p&gt;

&lt;p&gt;If you’re using a Mac with a one-button mouse, a Magic Mouse or Magic trackpad, you may find it useful to change the ‘Use Item’ control to ‘cmd’ the command key. You can then use left-click for attack and ‘cmd’ when you want to build.&lt;/p&gt;

&lt;p&gt;To change your keys, just press ‘Esc’ to get to ‘Options..’, then click ‘Controls…’ and set the ‘Use Item’ key to ‘cmd’ (Minecraft will call this ‘LWIN’ (the left Windows key) but ignore that horrible name :))&lt;/p&gt;

&lt;p&gt;Most new trackpads (MacBook/Pro/Air, etc.) don’t even have a button, the trackpad &lt;em&gt;is&lt;/em&gt; the button. This makes even left clicking difficult. It’s easy to click once, to attack, but a sustained click-and-hold is a little trickier (especially if you want to move the cursor around at the same time).&lt;/p&gt;

&lt;p&gt;Have a look at your Magic Mouse/Trackpad settings and check the settings so that double-tap is set to click and hold.&lt;/p&gt;

&lt;p&gt;You will, however, find it much easier to buy a cheap two-button mouse for your Minecraft sessions.&lt;/p&gt;</description><link>http://minecraftformac.com/post/19186479265</link><guid>http://minecraftformac.com/post/19186479265</guid><pubDate>Mon, 12 Mar 2012 18:00:05 +0000</pubDate></item><item><title>Hey thanks for the Texture Pack for mac video. I did run into a problem. When i went to the library then to app support it didn't show any mine craft folder. i just bought mine craft and not sure what to do or whats wrong. Thanks.  -Riley</title><description>&lt;p&gt;Hi Riley, thanks for using your name - I’m getting bored of this ‘Anonymous’ dude :)&lt;/p&gt;

&lt;p&gt;The simple way to find your stuff is to use Finder. Use the Go, Go To Folder, menu option. Then type&lt;/p&gt;

&lt;p&gt;~/Library&lt;/p&gt;

&lt;p&gt;that will be your user’s library and then you can find Application Support and minecraft&lt;/p&gt;</description><link>http://minecraftformac.com/post/19180277530</link><guid>http://minecraftformac.com/post/19180277530</guid><pubDate>Mon, 12 Mar 2012 15:00:05 +0000</pubDate></item></channel></rss>

