Sony, Nintendo, and Microsoft will require publishers to disclose the odds of earning items in loot boxes

// initialize jwplayer var playerInstance = jwplayer('player');// player dom elements var playerContainerEl = document.querySelector('.player-container');// returns video player position from top of document function getElementOffsetTop(el) { var boundingClientRect = el.getBoundingClientRect(); var bodyEl = document.body; var docEl = document.documentElement; var scrollTop = window.pageYOffset || docEl.scrollTop || bodyEl.scrollTop; var clientTop = docEl.clientTop || bodyEl.clientTop || 0; return Math.round(boundingClientRect.top + scrollTop - clientTop); }// returns the current y scroll position function getScrollTop() { var docEl = document.documentElement; return (window.pageYOffset || docEl.scrollTop) - (docEl.clientTop || 0); }// configure jwplayer instance playerInstance.setup({ autostart: true, playlist: 'https://cdn.jwplayer.com/v2/playlists/mYdavspX', primary: 'html5', setFullscreen: true, width: '100%' });// when jwplayer instance is ready playerInstance.on('ready', function() { var config = playerInstance.getConfig(); var utils = playerInstance.utils; // get height of player element var playerHeight = config.containerHeight; // flag determining whether close has been clicked var closed = true; // CHANGED // flag determing whether player is playing var playing = false; // ADDED // eventhandler for when close button is being pressed document.getElementsByClassName('icon-close')[0].addEventListener('click', () => { closed = true; onScrollViewHandler(); }); playerInstance.on('play', function() { closed = false; playing = true; // ADDED }).on('pause', function () { playing = false; // ADDED }).on('adPlay', function() { closed = false; // ADDED playing = true; // ADDED }).on('adPause', function() { playing = false; // ADDED });// get player element position from top of document var playerOffsetTop = getElementOffsetTop(playerContainerEl);// set player container to match height of actual video element playerContainerEl.style.height = playerHeight + 'px';// below we handle window scroll event without killing performance function onScrollViewHandler() { var minimized = getScrollTop() >= playerOffsetTop;if (closed && minimized) { minimized = false; jwplayer().pause(); playing = false; // ADDED } else if (!minimized && !playing) { closed = true; // ADDED } utils.toggleClass(playerContainerEl, 'player-minimize', minimized); // update the player's size so the controls are adjusted playerInstance.resize(); }// namespace for whether or not we are waiting for setTimeout() to finish var isScrollTimeout = false;// window onscroll event handler window.onscroll = function() { // skip if we're waiting on a scroll update timeout to finish if (isScrollTimeout) return; // flag that a new timeout will begin isScrollTimeout = true; // otherwise, call scroll event view handler onScrollViewHandler(); // set new timeout setTimeout(function() { // reset timeout flag to false (no longer waiting) isScrollTimeout = false; }, 80); };});

Sony, Microsoft, and Nintendo have committed to the Entertainment Software Association (ESA) that they will soon require publishers who publish games on their platforms to disclose the odds of earning items in loot boxes for new games and updates that add loot boxes to their games.

The news comes from the Entertainment Software Association chief counsel of tech policy Michael Warnecke, who is currently talking at Federal Trade Commission’s Inside the Game workshop.

“That said, we are doing more,” Warnecke said. “I’m pleased to announce this morning that Microsoft, Nintendo, and Sony have indicated to ESA a commitment to new platform policies with respect to the use of paid loot boxes in games that are developed for their platform. Specifically, this would apply to new games and game updates that add loot box features. And it would require the disclosure of the relative rarity or probabilities of obtaining randomized virtual items in games that are available on their platforms.

The ESA also noted as part of their statement at the Workshop that many leading publishers have agreed to also disclose the odds themselves to allow more information to be shared with the consumers.

“As well, many of the leading video game publishers of the Entertainment Software Association have decided that they are going to implement a similar approach at the publisher level to provide consumers this information and give them enhanced information to make purchase decisions.”

The ESA has maintained their stance that loot boxes should not be considered gambling. The association has said for months that they disagree with the Senators notion that loot boxes should be banned or considered gambling as players earn items regardless of purchasing it or not.

The ESA, alongside the ESRB, has updated their ratings system in the US to note which games have in-game DLC with a new “In-Game Purchases” tag on the back of the box for each of the products.

Senators in the US have been calling for hearings and investigations to understand the effect that loot boxes have on children. Thus far, no major action has been taken in the US on this issue.

SOURCE: GameIndustry

comments below

No comments