Not a fan of the digital-only release. They're probably going to release it at full retail price, which so far I've held off on buying digital at retail price (a license is worth less than a physical product). I really don't want to break that streak, but Phoenix Wright is a hard thing to pass up.
Honestly, that's the silliest objection I've heard in a long time. A game is a game is a game.
Wh-what? This is an incredibly valid point of view. It's perfectly reasonable to say you have some hangups with digital games (DRM) but are willing to overlook all of them if you're getting a healthy cut of that lowered distribution cost and risk (Steam).
There are more A+ games released every year than most people (certainly myself) could possibly hope to play. What's silly about saying you'll choose all of the ones that are cheapest once quality isn't a factor, and never wind up getting around to the game that never drops below MSRP?
Also, other than things like Steam sales, digital only games don't generally get nearly as cheap as the physical version. Sometimes a game will be $15 on amazon and still $40 on the Xbox Live Marketplace.
Not a fan of the digital-only release. They're probably going to release it at full retail price, which so far I've held off on buying digital at retail price (a license is worth less than a physical product). I really don't want to break that streak, but Phoenix Wright is a hard thing to pass up.
Honestly, that's the silliest objection I've heard in a long time. A game is a game is a game.
Wh-what? This is an incredibly valid point of view. It's perfectly reasonable to say you have some hangups with digital games (DRM) but are willing to overlook all of them if you're getting a healthy cut of that lowered distribution cost and risk (Steam).
There are more A+ games released every year than most people (certainly myself) could possibly hope to play. What's silly about saying you'll choose all of the ones that are cheapest once quality isn't a factor, and never wind up getting around to the game that never drops below MSRP?
Also, other than things like Steam sales, digital only games don't generally get nearly as cheap as the physical version. Sometimes a game will be $15 on amazon and still $40 on the Xbox Live Marketplace.
That's because Xbox Live is really slow to update. Steam will almost always have a price cut or a sale on the same game well before the prices drop in retail stores.
No Microsoft controls all the prices on XBL, if your game is on there its priced at their discretion. Steam allows you to change your own price at will.
I beathen the game both ways, but do agree they are an awesome set of games. Now if the password system does not work I call BS.
It says they added a link system. You should be all set if you buy both.
Should be good then, although I really do not want to go back to a notepad to write down the passwords to close the one game and open the other.
Also I am trying to find out how high of a class to have the SDHC card that will work with the 3DS. You be surprised how difficult it is to get an official answer to this question.
RE: the Google Doc: I'm working on it. I'm just trying to get a Python script that'll pull them all out working. Right now it pulls codes, but not the username.
Has anyone tried the 2 TB trick with the 3DS? You can technically get a 2 TB XHDSC card to work with the 3DS if you format it in FAT32. Anyone heard evidence of this?
Done. Since Google saves revisions, I'm not worried about a jackass fucking this up. If your code's not in here and you posted it, it was probably on one of the pages that choked my script. If it's wrong, script's fault again.
Sad thing is, this is probably the first thing that has got me interested in getting a 3DS. I've always wanted to play these, but never got around to acquiring them.
Has anyone tried the 2 TB trick with the 3DS? You can technically get a 2 TB XHDSC card to work with the 3DS if you format it in FAT32. Anyone heard evidence of this?
No, because I don't have thousands of dollars to blow on that. On Amazon a 256 GB SDXC card is $605 so it scares me to think how much a 2 TB card would cost. Hell, you could probably buy the whole game library for less money.
I thought FAT32 would be too limited to work on a 2TB card. Not sure what the max file system size limit is, but it only supported files up to 4GB, and doesn't even support long filenames.
Comments
There are more A+ games released every year than most people (certainly myself) could possibly hope to play. What's silly about saying you'll choose all of the ones that are cheapest once quality isn't a factor, and never wind up getting around to the game that never drops below MSRP?
http://www.polygon.com/2013/5/17/4340176/the-legend-of-zelda-oracle-of-ages-and-oracle-of-seasons-launching
Also I am trying to find out how high of a class to have the SDHC card that will work with the 3DS. You be surprised how difficult it is to get an official answer to this question.
I found that a Class 10 will work...sometimes.
But me, I have added a lot of you guys already. You fuckers just need to add me back.
4811-7092-1029
I'll check my 3DS when I get home tonight.
I'm working on it. I'm just trying to get a Python script that'll pull them all out working. Right now it pulls codes, but not the username.
If anyone's curious/wants to laugh at my terrible "Written while teaching myself Python and BeautifulSoup at the same time" code:
import re
from urllib import request
from bs4 import BeautifulSoup
def GetFriendCode(url):
try:
frcf = BeautifulSoup(request.urlopen(url))
for string in frcf.find_all(text=re.compile("[0-9][0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]")):
print(string.parent.previous_sibling.previous_sibling.span.a['title'])
print(string)
except AttributeError:
print("Whoopsy, something choked!")
for x in range(1,21):
GetFriendCode("http://forum.frontrowcrew.com/index.php?p=/discussion/7106/nintendo-3ds/p"+str(x))
re.compile(r'(\d{4})\-(\d{4})\-(\d{4})')
I am getting Animal Crossing if that matters...