Noticed on some games they give coins for watching video adverts.
Is this possible with Corona and if so which provider does this ?
Thanks,
Dave
Noticed on some games they give coins for watching video adverts.
Is this possible with Corona and if so which provider does this ?
Thanks,
Dave
This is really up to you. Assuming your game has some form in “in-game” currency (coins, gems, or any other abstract surrogate for cash that the player can “spend” on stuff like unlocking assets or etc), then you can choose when to award it. Maybe you’ll give them 10 coins if they like your facebook page, or 8 gems if they’ll rate your app, or 10 gold bars if they’ll watch a vungle ad, or etc. In pseudo-code:
if (incentivizedAction.wasCompleted) then gameCurrency:earn(10) end
Hi, I want to know if any ad networks offer a way of telling if someone has watched a video ad ? Dave
as above: vungle
and in particular for this use, you’ll want to listen for “adEnd”
This is really up to you. Assuming your game has some form in “in-game” currency (coins, gems, or any other abstract surrogate for cash that the player can “spend” on stuff like unlocking assets or etc), then you can choose when to award it. Maybe you’ll give them 10 coins if they like your facebook page, or 8 gems if they’ll rate your app, or 10 gold bars if they’ll watch a vungle ad, or etc. In pseudo-code:
if (incentivizedAction.wasCompleted) then gameCurrency:earn(10) end
Hi, I want to know if any ad networks offer a way of telling if someone has watched a video ad ? Dave
as above: vungle
and in particular for this use, you’ll want to listen for “adEnd”