non ad version of your game question?
Hipster_Owl_Studios
Member, PRO Posts: 214
Hello all hope you all had a happy new year. Now i have a game out right now how i want to make it free with ads but how do i go about keepings ads of copies of people who bought the game and remove the ads if somebody wants to do a in app purchase to remove those ads? thank you!
Comments
if Show Ads = true then
*** put your ad code here ***
Then when you have a person buying in app purchases, you just set the variable Show Ads to false.
That is a very basic way of doing it, but that'll work.
Attribute Boolean: Pro? = False (Show Ads)
Reason behind that is with in app purchases it will switch a boolean you pick to true when they purchase. So it is just easier to have one boolean controlling all your Free game stuff versus your Pro game stuffs.
In App Purchases switch the assigned boolean from false to true when they make their purchase correct?
If so you only need 1 boolean to moderate between the Paid and Free versions. It doesn't make a whole lot of sense to have more, but if you really want to have a boolean for Ads and for Extra Levels and so on, go for it. If you only have a Free version and in an in app purchase to unlock all pro features, it is just overkill to have more than 1 boolean.