RohanPhuyal

Console Msn Shopping Manual

Jun 29th, 2023
1,342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 2.25 KB | Source Code | 0 0
  1.  var msnShoppingGamePane = document.querySelector("shopping-page-base")
  2.       ?.shadowRoot.querySelector("shopping-homepage")
  3.       ?.shadowRoot.querySelector("msft-feed-layout")
  4.       ?.shadowRoot.querySelector("msn-shopping-game-pane");
  5.  
  6.     if (msnShoppingGamePane != null) {
  7.       msnShoppingGamePane.scrollIntoView({behavior: 'smooth'});
  8.       msnShoppingGamePane.gameSettings.newGameCountdown = 0;
  9.       msnShoppingGamePane.fetchGameDataFunc = async function (e) {
  10.         return JSON.parse(`[{"id":"46154567668","title":"HUGO BOSS BOSS BOTTLED. NIGHT. Eau De Toilette 200ml Spray","dealPercentage":"1%","annotation":"1%","seller":"The Fragrance Shop","imageInfo":{"altText":"HUGO BOSS BOSS BOTTLED. NIGHT. Eau De Toilette 200ml Spray","sourceImageUrl":"https://th.bing.com/th?id=OPE.vyeLua8uaC6Jcw300C300&pid=21.1","imageTint":0},"priceInfo":{"originalPrice":"£1.00","price":"£1.00","priceCurrencySymbol":"£"},"productAdsScenarioType":18,"groupingIdType":3,"groupingId":"I39JqFOmQioZw8YvP0AVBb6pw4","globalOfferId":"46154567668","categoryInfo_2":{"categoryId":"4285","categoryName":"Fragrance","categoryHierarchy":"Beauty & Fragrance|Fragrance"},"shippingPrice":"","sourceType":"xnp","brq":""}]`);
  11.       }
  12.       msnShoppingGamePane.getGameResult = function (e) {
  13.         // Make sure a product card is selected or if 'e' is '-1' to reset the game.
  14.         if (e === msnShoppingGamePane.selectedCardIndex) {
  15.           localStorage.removeItem("gamesPerDay");
  16.           msnShoppingGamePane.dailyLimitReached = false;
  17.           if (msnShoppingGamePane.leaderboardRecord)
  18.             msnShoppingGamePane.leaderboardRecord.dailyGuessingGamesPlayed = 0;
  19.           return e === msnShoppingGamePane.selectedCardIndex ? msnShoppingGamePane.gameState === "win" ? "win" : "lose" : null;
  20.         }
  21.       };
  22.       msnShoppingGamePane.gameSettings.newGameCountdown = 0;
  23.       msnShoppingGamePane.getGameResult(-1);
  24.       msnShoppingGamePane.gameState = "win";
  25.       msnShoppingGamePane.startCountdown();
  26.       msnShoppingGamePane.startCountdown();
  27.       setTimeout(() => {
  28.         for (var i = 0; i <= 10000; i++) clearInterval(i);
  29.         msnShoppingGamePane.gameSettings.newGameCountdown = 6;
  30.       }, 2200);
  31.     }
  32.     else alert("Unable to locate the shopping game!");
Tags: console manual
Advertisement
Add Comment
Please, Sign In to add comment