P00LS Games SDK Help

Ads

P00LS SDK supports both interstitial and rewarded ads. Rewarded ad should be used to reward the player with in game currency or items, while Interstitial ad should be used to display ads without any reward.

sdk.ShowAd(AdType.Rewarded, watched => { if (watched) { // reward the user } });
const watched = await sdk.ads.show('rewarded'); if(watched) { // reward the user }

where the parameter can be one of rewarded|interstitial

Last modified: 18 November 2024