Stars’ Roope Hintz hoping to play Game 4 vs. Oilers, considered game-time decision
The Dallas Stars need all the help they can get in the Western Conference Final, and one of their top players is hoping to provide it — if he can get healthy enough.

The Dallas Stars need all the help they can get in the Western Conference Final, and one of their top players wants provide it — if he can get healthy enough.
Star centre Roope Hintz is hoping to suit up for his side in Game 4 and will try to take the ice for warmups to see if he’s ready to return, he told reporters on Monday after taking part in the team’s optional practice.
Hintz is expected to be a game-time decision for Tuesday.
He was injured in the Stars’ Game 2 loss to the Oilers following a slash from Edmonton Oilers defenceman Darnell Nurse. Nurse received a two-minute minor penalty but no supplemental discipline on the play.
After Game 3 on Sunday, Stars head coach Peter DeBoer told reporters that the forward “wasn’t close” despite taking the ice for warmups.
Oscar Bäck slotted into the lineup at centre.
Hintz has five goals and six assists in 14 playoff games this post-season.
Dallas is currently down 2-1 in the Western Conference Final after a 6-1 loss on Sunday.
The series continues in Edmonton with Game 4 scheduled for Tuesday night. Coverage begins on Sportsnet and Sportsnet+ at 7:30 p.m. ET / 5:30 p.m. MT.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_e6c53a1cb47489607a22c1b49e9c2c2a', 'nhl', '9349cf02-d478-41df-a74e-13af7df4267b');