If you purchased the DLC, you will always have it. No matter if you subscribe and unsubscribe.
The only DLC that goes away if the DLC you have NOT purchased, but have access to while subscribed.
Can't say for sure, but I would imagine a DLC purchased from the Crown Store will go into the Collections screen (like Any Race, Any Alliance), and the game will either look for that, or for ESO Plus.That's what I expected would be the case. The main thing is I'm wondering how ZOS will have it noted in the account. I can see this being a problem when the time comes for it.
if ((hasPurchasedWrothgar == TRUE) or (isPlusMember == TRUE)) then WrothgarAccess = 1 else WrothgarAccess = 0 end
Can't say for sure, but I would imagine a DLC purchased from the Crown Store will go into the Collections screen (like Any Race, Any Alliance), and the game will either look for that, or for ESO Plus.That's what I expected would be the case. The main thing is I'm wondering how ZOS will have it noted in the account. I can see this being a problem when the time comes for it.
For example, let's take Wrothgar:if ((hasPurchasedWrothgar == TRUE) or (isPlusMember == TRUE)) then WrothgarAccess = 1 else WrothgarAccess = 0 end
Sorry, maybe I should have clarified that WrothgarAccess = 1 means "you have access to the DLC" and WrothgarAccess = 0 means "you don't have access to the DLC". Temporary and Permanent isn't relevant here, it's either "Access" or "No Access". So if you're an ESO Plus member, which is temporary, then WrothgarAccess = 1; if you've purchased the DLC, which is permanent, then WrothgarAccess = 1; if you have not purchased Wrothgar and are not a Plus member, then WrothgarAccess = 0.Doesn't that statement set both a purchase and plus member to 1 so it would be taken away when the isPlusMember == FALSE? If your on ESO Plus, you don't "buy" the DLC as it's considered "rented". So wouldn't something like the below work?Can't say for sure, but I would imagine a DLC purchased from the Crown Store will go into the Collections screen (like Any Race, Any Alliance), and the game will either look for that, or for ESO Plus.That's what I expected would be the case. The main thing is I'm wondering how ZOS will have it noted in the account. I can see this being a problem when the time comes for it.
For example, let's take Wrothgar:if ((hasPurchasedWrothgar == TRUE) or (isPlusMember == TRUE)) then WrothgarAccess = 1 else WrothgarAccess = 0 end
if ((hasPurchasedWrothgar == FALSE) and (isPlusMember == TRUE)) then
WrothgarAccess = 0 (which would give temporary access to DLC)
else
WrothgarAccess = 1 (which would give permanent access to DLC)
end
It's been a while since I played with this kind of stuff so don't quote me....
Sorry, maybe I should have clarified that WrothgarAccess = 1 means "you have access to the DLC" and WrothgarAccess = 0 means "you don't have access to the DLC". Temporary and Permanent isn't relevant here, it's either "Access" or "No Access". So if you're an ESO Plus member, which is temporary, then WrothgarAccess = 1; if you've purchased the DLC, which is permanent, then WrothgarAccess = 1; if you have not purchased Wrothgar and are not a Plus member, then WrothgarAccess = 0.Doesn't that statement set both a purchase and plus member to 1 so it would be taken away when the isPlusMember == FALSE? If your on ESO Plus, you don't "buy" the DLC as it's considered "rented". So wouldn't something like the below work?Can't say for sure, but I would imagine a DLC purchased from the Crown Store will go into the Collections screen (like Any Race, Any Alliance), and the game will either look for that, or for ESO Plus.That's what I expected would be the case. The main thing is I'm wondering how ZOS will have it noted in the account. I can see this being a problem when the time comes for it.
For example, let's take Wrothgar:if ((hasPurchasedWrothgar == TRUE) or (isPlusMember == TRUE)) then WrothgarAccess = 1 else WrothgarAccess = 0 end
if ((hasPurchasedWrothgar == FALSE) and (isPlusMember == TRUE)) then
WrothgarAccess = 0 (which would give temporary access to DLC)
else
WrothgarAccess = 1 (which would give permanent access to DLC)
end
It's been a while since I played with this kind of stuff so don't quote me....