Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

integrating iAD into 3d game

I'm developing first person shooter and want to integrate iAD (and maybe AdMob later). The problem is that all the ad systems that I know use simple UIView's for that and are based on tapping them. I want to use real 3d game objects as triggers, i.e. when you shot some special character an ad is invoked. The user would be notified about that (so if you don't want ads, just don't shot those objects).

I know how to do that from the technical point of view. But is it legal to do that from the ad provider point of view (and from the Apple review team POV)?

p.s. Or maybe someone knows ad system that could be integrated into my game like that.

like image 921
givi Avatar asked Aug 24 '12 08:08

givi


2 Answers

You can trigger a popup, bannner or full screen ad by hooking your object to a button press with the RevMob SDK. Their ads tends to be of the 'download a free game' variety.

I don't see how you can do this with Admob or especially iAd as they require the banner ad to be shown on the screen so that they can serve ads. Triggering them like this may be against their terms of service.

like image 189
FractalDoctor Avatar answered Sep 28 '22 19:09

FractalDoctor


I agree to FiddleMeRagged that you can use RevMob for this purpose. You can show a fullscreen ad whenever the user shoots wrong object.

However you can't use Admob for the same purpose. Since they clearly forbid any such activities in their usage policy. They ask you to put maximum one banner ad per screen
Similarly iAd also doesn't allow this kind of ad display.

Apple doesn't seem to have any problem with this, since our game already passed with this kind of functionality. I'll try to find some documentation regarding this.

Edit: Just found this link on Revmob site, which recommends displaying multiple fullscreen ads.

like image 39
noob Avatar answered Sep 28 '22 19:09

noob