|

This search bar is a powerful tool for navigating CAG. You can use it to find the lowest prices on games, trade-in values, search members, forum and blog topics, and much more.
After searching for a game title, click the
icon to pop-up a window with pricing information.
After typing in what you are looking for, you can filter your results by clicking on one of the tabs that pops up from the top of the search bar.
Looking for a game on a specific platform? Type in the platform name with the title!
Example: guitar hero 360
You don't need to click a pop-up tab to filter results. Just type what you are looking for right into the search bar.
Example: gears of war prices
Example: ninjatown review
|
|
|
#1 | ||||
|
Mass Effect 1 & 2 $5.99ea (Amazon.com Download)
ME
http://www.amazon.com/Electronic-Art...QXFXPJ29V9VD3Y ME2 http://www.amazon.com/Electronic-Art...BDHAKB230RN5E0 Use a Canadian credit card with a US address. |
||||
|
|||||
|
|
#2 | |||
|
if you buy ME2, will it come with all the DLC, like the ps3 version, or do you have to pay fer that too?
|
|||
|
||||
|
|
#4 | ||||
|
You guys do realize that this is credit card fraud, right? Says right on the page it's for US residents only. You can get fined massively. Is it REALLY worth it?
__________________
Check out http://slipgatecentral.blogspot.com/ for the latest gaming reviews! |
||||
|
|||||
|
|
#5 | |||
|
Like Nukkus said, you shouldn't change your billing address, but there is another way to still make the purchase.
To purchase this without changing your address, you can modify the HTML using Firebug. Simply replace the button that doesn't allow you to click from ![]() Code:
<img border="0" width="141" height="27" src="https://images-na.ssl-images-amazon.com/images/G/01/digital/bowser/buttons/button_no_order._V192261387_.gif"> ![]() Code:
<form method="post" action="/gp/swvgdtt/order/handle-order.html" name="makePurchase" style="margin: 0px;"
onsubmit="document.getElementById('dsvOrderConfirmationLoadingImageDiv').style.display = 'block';
document.getElementById('dsvPurchaseConfirmationButton').style.display ='none'" id="dsv-order-confirmation-page-place-order-button">
<input type="hidden" value="{getthisvalueintheaddressbar}" name="asin">
<input type="hidden" value="dc" name="v">
<input type="hidden" value="{sid number}" name="sid">
<input type="hidden" value="{pid number}" name="pid">
<div style="display: none;" id="dsvOrderConfirmationLoadingImageDiv">
<img border="0" width="14" height="14" src="https://images-na.ssl-images-amazon.com/images/G/01/ui/loadIndicators/loading-small._V192238939_.gif">
</div>
<input border="0"
width="170"
type="image" height="27" id="dsvPurchaseConfirmationButton" name="BuyAndDownload" alt="Buy and Download" src="https://images-na.ssl-images-amazon.com/images/G/01/digital/downloads/buttons/button_proceed_purchase_md_pri._V169498703_.gif">
</form>
Edit: Getting rid of some odd spaces in the code. Last edited by Netherman; 03-27-2012 at 11:53 AM.. |
|||
|
||||
|
|
#6 | |||||
|
|
|||||
|
||||||
|
|
#8 | ||||
|
If you don't wanna break the law or screw around, ME1&2 are $5.99 at Gamefly. ME2 digital deluxe is $8.99.
http://www.gamefly.com/download-games/ http://www.gamefly.com/buy-games/Sea...12&icid=sspmus A few other deals too, Deus Ex HR for $10.19. Arkham Asylum $4.99. Arkham City $14.99. |
||||
|
|||||
|
|
#9 | |||||
|
From what I understand, Amazon.com can't sell to Canada because of some licensing or contractual issues therefore they have to block us. Amazon must have enough due diligence in preventing us from purchasing. As long as we use valid payment information, we are doing nothing illegal, and it's a fault of Amazon's system that we are allowed to make the purchase. If they implemented this prevention method on the server side, there is nothing we could do to legally bypass it.
The overall point is, their prevention is just a client-side modification of what we see (and can click), but their system still allows us to make the purchase.
Code:
// ==UserScript==
// @name Amazon Enable Non-US Purchase
// @namespace netherman.amazonpurchase
// @description Enables purchasing downloadables from Amazon.com that are for US only even if outside US and without US billing address.
// @include https://www.amazon.com/gp/swvgdtt/order/handle-order.html*
// ==/UserScript==
function FindTag(elementTag)
{
var tags = document.getElementsByTagName(elementTag);
return tags;
}
function GetAttributeMatch(list, attribute, attValue)
{
for (var i = 0; i<list.length; i++)
{
if(list[i].getAttribute(attribute).indexOf(attValue) >= 0)
return list[i];
}
return null;
}
function getQuerystring(key, default_)
{
if (default_==null) default_="";
key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regex = new RegExp("[\\?&]"+key+"=([^&#]*)");
var qs = regex.exec(window.location.href);
if(qs == null)
return default_;
else
return qs[1];
}
function createInput(elementValue, elementName)
{
var tempElement = document.createElement('input');
tempElement.setAttribute('type', 'hidden');
tempElement.setAttribute('value', elementValue);
tempElement.setAttribute('name', elementName);
return tempElement
}
var imgs = FindTag('img');
var img = GetAttributeMatch(imgs, 'src', 'button_no_order._V192261387_.gif');
//alert(img.getAttribute('src'));
var formCreated = document.createElement('form');
formCreated.setAttribute('method', 'post');
formCreated.setAttribute('action', '/gp/swvgdtt/order/handle-order.html');
formCreated.setAttribute('name', 'makePurchase');
formCreated.setAttribute('style', 'margin: 0px;');
formCreated.setAttribute('onsubmit', "document.getElementById('dsvOrderConfirmationLoadingImageDiv').style.display = 'block'; document.getElementById('dsvPurchaseConfirmationButton').style.display ='none'");
formCreated.setAttribute('id', 'dsv-order-confirmation-page-place-order-button');
//<input type="hidden" value="{asinnumber}" name="asin">
var elementValue = getQuerystring('asin');
var elementName = "asin";
var tempElement = createInput(elementValue, elementName);
formCreated.appendChild(tempElement);
//<input type="hidden" value="dc" name="v">
var elementValue = "dc";
var elementName = "v";
var tempElement = createInput(elementValue, elementName);
formCreated.appendChild(tempElement);
//<input type="hidden" value="{sidnumber}" name="sid">
var elementValue = unsafeWindow.ue_sid;
var elementName = "sid";
var tempElement = createInput(elementValue, elementName);
formCreated.appendChild(tempElement);
//<input type="hidden" value="{pidnumber}" name="pid">
var input = FindTag('input');
input = GetAttributeMatch(input, 'name', 'pid');
var elementValue = input.getAttribute('value');
var elementName = "pid";
var tempElement = createInput(elementValue, elementName);
formCreated.appendChild(tempElement);
//<div style="display: none;" id="dsvOrderConfirmationLoadingImageDiv">
// <img border="0" width="14" height="14" src="https://images-na.ssl-images-amazon.com/images/G/01/ui/loadIndicators/loading-small._V192238939_.gif">
//</div>
var tempDiv = document.createElement('div');
tempDiv.setAttribute('style', 'display: none;');
tempDiv.setAttribute('id', 'dsvOrderConfirmationLoadingImageDiv');
var tempElement = document.createElement('img');
tempDiv.appendChild(tempElement);
tempElement.setAttribute('border', '0');
tempElement.setAttribute('width', '14');
tempElement.setAttribute('height', '14');
tempElement.setAttribute('src', 'https://images-na.ssl-images-amazon.com/images/G/01/ui/loadIndicators/loading-small._V192238939_.gif');
formCreated.appendChild(tempDiv);
//<input border="0" width="170" type="image" height="27" id="dsvPurchaseConfirmationButton" name="BuyAndDownload" alt="Buy and Download" src="https://images-na.ssl-images-amazon.com/images/G/01/digital/downloads/buttons/button_proceed_purchase_md_pri._V169498703_.gif">
var tempElement = document.createElement('input');
tempElement.setAttribute('border', '0');
tempElement.setAttribute('width', '170');
tempElement.setAttribute('type', 'image');
tempElement.setAttribute('height', '27');
tempElement.setAttribute('id', 'dsvPurchaseConfirmationButton');
tempElement.setAttribute('name', 'BuyAndDownload');
tempElement.setAttribute('alt', 'Buy and Download');
tempElement.setAttribute('src', 'https://images-na.ssl-images-amazon.com/images/G/01/digital/downloads/buttons/button_proceed_purchase_md_pri._V169498703_.gif');
formCreated.appendChild(tempElement);
img.parentNode.insertBefore(formCreated, img);
//maybe remove this image
//<img border="0" width="141" height="27" src="https://images-na.ssl-images-amazon.com/images/G/01/digital/bowser/buttons/button_no_order._V192261387_.gif">
//img.parentNode.removeChild(img);
|
|||||
|
||||||
|
|
#11 | |||||
|
|
|||||
|
||||||
|
|
#12 | ||||||
|
I'm sure when you're buying something from Amazon you click thru an greement or what have you and by falsifying the transaction you'd be breaking that agreement. that said if it was the steam version I'd do it myself as I'm sure they'll never notice. After all it's ok to buy the game with a US card and then move to Canada. There's no reason for them to actually audit the IPs or anything. |
||||||
|
|||||||
|
|
#13 | ||||||||||
|
With that said, by bypassing Amazon's (pathetic) block, you will be violating Amazon's terms of use. What this means is you will not be fined for credit card fraud, but you may lose your Amazon account. Make sure to download your purchases ASAP. Edit: Also, from what we know, Amazon's site restricts download purchases to only those who have a US billing address. This means that they do not use the IP address to verify US residents. Any US resident, even if they are outside of the US, are still allowed to purchase. |
||||||||||
|
|||||||||||
![]() |
| Thread Tools | |
|
|
|