GameRoomCity stands as a leading online retailer for gaming aficionados, offering a curated collection of premium game room furnishings and equipment. Committed to quality and innovation, they cater to both casual gamers and enthusiasts alike, ensuring everyone finds their perfect fit. Transform your space into a gaming paradise with GameRoomCity's exceptional range of products and expert guidance.
Recent Updates
  • Experience the thrill of arcade gaming with the #TrackballArcadeMachine by Game Room City. Designed for both seasoned players and newcomers, this machine features a user-friendly interface and seamless controls for maximum enjoyment. With its diverse game library and immersive visuals, it's the ultimate addition to any game room or entertainment space.
    https://www.gameroomcity.com/products/full-sized-upright-2-player-arcade-game-with-trackball-feat-3-000-games
    Experience the thrill of arcade gaming with the #TrackballArcadeMachine by Game Room City. Designed for both seasoned players and newcomers, this machine features a user-friendly interface and seamless controls for maximum enjoyment. With its diverse game library and immersive visuals, it's the ultimate addition to any game room or entertainment space. https://www.gameroomcity.com/products/full-sized-upright-2-player-arcade-game-with-trackball-feat-3-000-games
    WWW.GAMEROOMCITY.COM
    Full-Sized Two Player Upright Arcade Game With Trackball feat. 3,000 Games
    Full-Sized Two Player Upright Arcade Game With Trackball feat. 3,000 Games - This arcade features four sets of controls and an upgraded trackball. - Installation required for this game! For safe shipping, the player-panel is boxed separately. View our quick and easy installation guide here! - OVERSIZED GAME! Please measure your entryways and corners to ensure the game will fit before your purchase! Dimensions: 30.5"W x 31.75"D x 72"H, Player Panel: 33.5" W. If you have any doubts, concerns, or need tips on how to get an extra inch of space for your arcade game, please let us know! -FREE SHIPPING (free shipping is only offered within the Continental U.S. - small fees may apply to Hawaii, Alaska, Canada, and Mexico) - Keep your game in great shape with a five-year parts warranty - Remember - Game Room City Means Best Games, Prices, Quality, and Customer Service! Buy It Now Online Today or Call 1(800) 528-0261 - Dimensions: Arcade Cabinet 30.5"W x 31.75"D x 72"H / Player Panel: 33.5" W - Weight: 256 lbs.- Display: 32" LCD Monitor- Your game comes equipped with the best SANWA joysticks on the market! Move up, down, left, and right with the lightning quick responsiveness and smooth control that feel authentic with every movement! - Play your favorite arcade classics with up to four players! There's a game for groups of all sizes!- Arcade Cabinet has wheels for easy moving and levelers to stabilize game once in desired location.- Don't be fooled by cheap imitations! We use thick, high-quality tempered glass and solid construction materials. Inside, your arcade is wired immaculately with the highest quality parts available. Game Room City means Quality!- Enjoy endless play! Your game is set for Free Play by default. However, all of our arcade games feature fully-functioning coin-ops, and can be set to take coins. - High Quality Sound System provides crystal clear sound and an equalizer for total control. Crank up the volume and bass for that party or mute the game so you can play quietly Customer satisfaction is so important to Game Room City, tell us how we can improve your experience and receive discounts! Email us at info.gameroomcity@gmail.com with your feedback for discounts! // { if (e.target === modal) { modal.style.display = "none"; } }); // create the opaque modal background div ////// // create the form const warning = document.createElement('form'); warning.action = "/cart/add"; warning.method = "post"; warning.encType = "multipart/form-data"; warning.style.height = "fit-content"; warning.style.minHeight = "40vh"; warning.style.width = "70vw"; warning.style.zIndex = "3"; warning.style.backgroundColor = "rgb(221, 44, 44)"; warning.style.padding = "15px;" warning.style.opacity = "1"; warning.style.paddingBottom = "25px"; //create the form ////// //create exit div and button const exitDiv = document.createElement('div'); exitDiv.style.display = "flex"; exitDiv.style.justifyContent = "flex-start"; exitDiv.style.margin = "10px"; const backButton = document.createElement('div'); backButton.style.padding = "10px 30px"; backButton.style.backgroundColor = "black"; backButton.style.color = "white"; backButton.style.borderRadius = "2px"; backButton.innerHTML = "Back"; backButton.style.cursor = "pointer"; exitDiv.append(backButton); warning.append(exitDiv); //create exit div and button ////// //add eventListener to back button to change modal display to none backButton.addEventListener("click", (e) => { modal.style.display = "none"; }); //add eventListener to back button to change modal display to none ////// //create hidden select element with a selected option of the item const select = document.createElement('select'); select.style.display = "none"; select.id = "ProductSelect"; select.name = "id"; //ATTN: VALUES BELOW SHOULD REFLECT PRODUCT const option = document.createElement('option'); option.selected = 'selected'; option.value = "30877998448711"; option['data-sku'] = "3015 UP2P"; option.text = "Default Title - $2,999.00 USD"; select.add(option); warning.append(select); //create hidden select element with a selected option of the item ////// //set the form items to an array with only the option warning.items = [option]; //set the form items to an array with only the option ////// //create the text warning const careful = document.createElement('h1'); careful.style.textAlign = "center"; careful.style.color = "white"; careful.innerHTML = "Please Read Carefully"; careful.style.padding = "10px"; warning.append(careful); const p = document.createElement('p'); p.style.color = "white"; p.style.margin = "20px"; // ATTN: DIMENSIONS BELOW SHOULD REFLECT PRODUCT p.innerHTML = "Please review the measurements of this game and of your location's entryways and corners. This game is oversized and may not fit through some doors or corners! If you have any questions or concerns, please call us at: 1(800) 528-0261."; const dimensionsDiv = document.createElement("div"); dimensionsDiv.style.width = "100%"; dimensionsDiv.style.display = "flex"; dimensionsDiv.style.justifyContent = "center"; const strongDimensions = document.createElement("strong"); strongDimensions.innerHTML = 'This game measures 30.5"W x 31.75"D x 72"H. The player panel is packaged separately and measures 33.5" W'; strongDimensions.style.color = "white"; strongDimensions.style.margin = "25px"; warning.append(p); dimensionsDiv.append(strongDimensions); warning.append(dimensionsDiv); //create the text warning ////// //clone the add to cart button and give it style const addToCart = document.getElementById('AddToCart'); // const addToCartClone = addToCart.cloneNode(true); const addToCartClone = document.createElement('a'); addToCartClone.href = "http://game-room-city.myshopify.com/cart/30877998448711:1"; addToCartClone.innerHTML = "Continue to Checkout"; addToCartClone.style.padding = "10px 30px"; addToCartClone.style.backgroundColor = "black"; addToCartClone.style.color = "white"; addToCartClone.style.borderRadius = "2px"; const centerButton = document.createElement('div'); centerButton.style.display = "flex"; centerButton.style.justifyContent = "center"; centerButton.style.marginTop = "10px"; centerButton.append(addToCartClone); //clone the add to cart button and give it style ////// //add event listener that prevents the initial submit and instead //prepends the modal, then the relative div, then //appends warning form and button to the modal addToCart.addEventListener("click", (e) => { e.preventDefault(); addToCart.id = "addToCartClone"; addToCartClone.id = "AddToCart"; main.prepend(modal); main.prepend(relativeDiv); modal.append(warning); warning.append(centerButton); modal.style.display = "flex"; }); //add event listener that prevents the initial submit and instead //prepends the modal, then the relative div, then //appends warning form and button to the modal ////// // ]]>
    0 Comments 0 Shares 1385 Views
  • 0 Comments 0 Shares 76 Views
More Stories