Hi, im working with the Kidoz plugin at the moment, and trying to load both rewardedVideo and interstitial, when loading one / or the other, it loads fine, but when trying to load both, only one seems to load, the last one with a load called in the init. and for the second i dont even get a failed event… im using build 2017.3068
for example, below will load only the intestitial, and no “loaded” or “failed” event is being fired for rewardedVideo,
if you switch the order which you load so rewardedVideo second, then it will be loaded, but then no “loaded” or “failed” event for interstitial
let me know if there is an issue, im really scratching my head here.
function kidozAdListener( event ) if ( event.phase == "init" ) then -- Successful initialization kidoz.load( "rewardedVideo" ) kidoz.load( "interstitial" ) elseif ( event.phase == "loaded" ) then -- The ad was successfully loaded print("Loaded: " .. event.type) elseif ( event.phase == "failed" ) then -- Failed to load ad print("Failed: " .. event.type) end end