Oilers’ Ryan Nugent-Hopkins in lineup for Game 3 of Stanley Cup Final
The longest-serving player for the Edmonton Oilers is good to go for Game 3 of the Stanley Cup Final. Oilers forward Ryan Nugent-Hopkins will be in the lineup Monday against the Florida Panthers after being listed as a game-time decision due to an undisclosed injury. He missed the team’s practice on Sunday, but the 32-year-old forward was back on the ice Monday for the team’s optional morning skate. Oilers head coach Kris Knoblauch told reporters Sunday that he expected Nugent-Hopkins to play despite listing him as a game-time decision. Nugent-Hopkins is fourth on the team in scoring during the playoffs with 18 points (five goals and 13 assists) in 18 games. Watch the Stanley Cup Final on Sportsnet With the Stanley Cup within reach, the Edmonton Oilers and Florida Panthers are set to battle once again for hockey’s ultimate prize. Watch every game of the Final on Sportsnet and Sportsnet+. Broadcast schedule He was held off the scoresheet during the first two games of the Stanley Cup Final. The 32-year-old from Burnaby, B.C., also finished fourth on the team in scoring during the regular season with 49 points (20 goals and 29 assists) in 78 games. Florida hosts Game 3 with the series knotted up 1-1. Watch the game live on Sportsnet and Sportsnet+ starting at 8 p.m. ET / 6 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 = ` Error: ${error} `; return; } if (!oddsData) { container.innerHTML = ` Odds data not available `; return; } let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }); container.innerHTML = ` BetMGM Odds ${gameDateFormatted} VS Moneyline ${visitingTeam.short_name} ${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money} ${homeTeam.short_name} ${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money} Spread ${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`} ${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money} ${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`} ${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money} Over/Under O ${oddsData.total} ${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money} U ${oddsData.total} ${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money} Powered by ${gameDateFormatted} VS Powered by

The longest-serving player for the Edmonton Oilers is good to go for Game 3 of the Stanley Cup Final.
Oilers forward Ryan Nugent-Hopkins will be in the lineup Monday against the Florida Panthers after being listed as a game-time decision due to an undisclosed injury.
He missed the team’s practice on Sunday, but the 32-year-old forward was back on the ice Monday for the team’s optional morning skate.
Oilers head coach Kris Knoblauch told reporters Sunday that he expected Nugent-Hopkins to play despite listing him as a game-time decision.
Nugent-Hopkins is fourth on the team in scoring during the playoffs with 18 points (five goals and 13 assists) in 18 games.
-
-
Watch the Stanley Cup Final on Sportsnet
With the Stanley Cup within reach, the Edmonton Oilers and Florida Panthers are set to battle once again for hockey’s ultimate prize. Watch every game of the Final on Sportsnet and Sportsnet+.
He was held off the scoresheet during the first two games of the Stanley Cup Final.
The 32-year-old from Burnaby, B.C., also finished fourth on the team in scoring during the regular season with 49 points (20 goals and 29 assists) in 78 games.
Florida hosts Game 3 with the series knotted up 1-1.
Watch the game live on Sportsnet and Sportsnet+ starting at 8 p.m. ET / 6 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_3cffdb2de36092a8f4c20755c5485627', 'NHL', 'facf5734-57d1-4483-b747-98098924b5ec');