Connect with us

Nevada

Grass Valley woman scammed out of $40,000, Nevada sheriff says, warning of scammers

Published

on

Grass Valley woman scammed out of ,000, Nevada sheriff says, warning of scammers


Advertisement

Grass Valley woman scammed out of $40,000, Nevada sheriff says, warning of scammers

Advertisement

KCRA logo

Updated: 2:32 PM PDT Apr 3, 2026

Editorial Standards

Advertisement

After a woman was scammed out of $40,000 in cash, the Nevada County Sheriff’s Office is reminding others to stay aware of those looking to trick you out of your money.The sheriff’s office said that an elderly Grass Valley woman received a text message that appeared to come from a bank branch she uses. The text claimed that she was possibly facing out-of-state fraud charges on her account.In response to that claim, the sheriff’s office said the woman replied, saying she did not make the charges. The scammer then called her and told her that her account was compromised.After the phone call, the woman went to multiple banking locations at the request of the scammer, removing money from her account, ultimately resulting in her losing the $40,000.Following this case, the sheriff’s office provided some tips to help prevent scams.Protect personal information and do not share personal information with unsolicited callers or messagesBe skeptical of unexpected calls or messages claiming an account is locked or compromised and to not trust links and phone numbers providedIf someone is claiming to represent a bank, hang up and contact your bank directly using only the number listed on your card or on the bank’s official website. Keep in mind caller ID can be manipulatedCarefully check emails and websites for subtle misspellings to avoid phishing and to never provide login information through links sent in messagesVerify the legitimacy of urgent financial requests before making any immediate transfers or gift card purchases as they are common scam tactics.Regularly check bank statements for any unauthorized activityTrust your instincts if something feels suspicious or unusualReport fraud to your bank and the Federal Trade Commission.See more coverage of top California stories here | Download our app | Subscribe to our morning newsletter | Find us on YouTube here and subscribe to our channel

After a woman was scammed out of $40,000 in cash, the Nevada County Sheriff’s Office is reminding others to stay aware of those looking to trick you out of your money.

The sheriff’s office said that an elderly Grass Valley woman received a text message that appeared to come from a bank branch she uses. The text claimed that she was possibly facing out-of-state fraud charges on her account.

Advertisement

In response to that claim, the sheriff’s office said the woman replied, saying she did not make the charges. The scammer then called her and told her that her account was compromised.

After the phone call, the woman went to multiple banking locations at the request of the scammer, removing money from her account, ultimately resulting in her losing the $40,000.

Following this case, the sheriff’s office provided some tips to help prevent scams.

  • Protect personal information and do not share personal information with unsolicited callers or messages
  • Be skeptical of unexpected calls or messages claiming an account is locked or compromised and to not trust links and phone numbers provided
  • If someone is claiming to represent a bank, hang up and contact your bank directly using only the number listed on your card or on the bank’s official website. Keep in mind caller ID can be manipulated
  • Carefully check emails and websites for subtle misspellings to avoid phishing and to never provide login information through links sent in messages
  • Verify the legitimacy of urgent financial requests before making any immediate transfers or gift card purchases as they are common scam tactics.
  • Regularly check bank statements for any unauthorized activity
  • Trust your instincts if something feels suspicious or unusual
  • Report fraud to your bank and the Federal Trade Commission.

See more coverage of top California stories here | Download our app | Subscribe to our morning newsletter | Find us on YouTube here and subscribe to our channel

Advertisement

`;
}

Advertisement

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

Advertisement

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

Advertisement

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.kcra.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.kcra.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

Advertisement

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

Advertisement

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

Advertisement

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

Advertisement

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.kcra.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.kcra.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

Advertisement

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

Advertisement

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

Advertisement

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Loading more articles…



Source link

Continue Reading
Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Nevada

High-profile Las Vegas attorney tapped to join Nevada Gaming Commission

Published

on

High-profile Las Vegas attorney tapped to join Nevada Gaming Commission


Longtime Las Vegas attorney Richard Schonfeld will become the newest member of the Nevada Gaming Commission.

Gov. Joe Lombardo’s office announced Schonfeld’s appointment on Tuesday. He will join the commission on April 28, taking over for the outgoing Rosa Solis-Rainey.

A name partner of the law firm Chesnoff & Schonfeld, Richard Schonfeld has practiced law in Nevada for over 27 years.

He has worked in criminal law, representing many famous clients like Henry Ruggs III, Alvin Kamara, Marshawn Lynch and Dan Rodimer. He’s also served as outside corporate litigation counsel to several Las Vegas business entities.

Advertisement

In a statement, Lombardo said Schonfeld brings to the commission decades of legal experience and a strong understanding of Nevada’s business community.

“I am confident he will be a valuable addition to the Nevada Gaming Commission as it continues its important work safeguarding the integrity of our gaming industry,” the governor said.

Gaming commissioners serve four-year terms on a part-time basis. The Commission serves as the final authority on gaming licensing, discipline and other regulatory matters.



Source link

Advertisement
Continue Reading

Nevada

With gas in Nevada topping $5 a gallon, e-bike sales surge for a Las Vegas business

Published

on

With gas in Nevada topping  a gallon, e-bike sales surge for a Las Vegas business


Nevada drivers are feeling the sting at the pump as gas prices hover around the $5 mark, forcing some families in the Las Vegas area to make tough choices and pushing others to look for alternatives such as e-bikes.

According to AAA, the cost of a regular gallon of gas in Nevada is a little more than $5. In Las Vegas, the average is $5.05 a gallon.

In North Las Vegas, parents Cheliese Mossett and Avigail Puente stopped for gas near Lake Mead and Losee, where prices significantly under $5 a gallon are hard to come by.

“They need to go down. Absolutely. Right now,” Mossett said.

Advertisement

Puente said, “I do not know what crisis is going on but they should lower them.”

Maverik Station in North Las Vegas (KSNV)

Mossett, a medical courier who drives a minivan, said she can only spend $40 at a time and never quite fills her tank because she needs what is left to pay for her kids’ care. “It was already hard before. Now, it is getting ridiculous,” she said. Mossett also said it is time for the U.S. to pull out of Iran to drop prices back down.

Puente described weighing everyday purchases against the cost of fuel to get her child to school.

“I mean, it is over whether I want to buy my son a toy or a Happy Meal to where, well, those five or ten dollars could go in my car to get him to and from school so it is pretty outrageous,” Puente said.

7 Eleven Station in North Las Vegas (KSNV){p}{/p}
7 Eleven Station in North Las Vegas (KSNV)

As some families struggle with fuel costs, an e-bike shop owner said he is seeing more customers trying to save money by riding instead of driving.

Advertisement

“We have had a big uptick in 20, 30, 40 year-olds that are looking to save money,” said Eric Olsen, owner of Epic E-Bike Adventures.

Olsen said he launched his business recently and has reported some of his best sales in the last month, which he tied to when the U.S. began its war with Iran. He said this month’s sales are 50% better than the month before. The bikes cost between $1,000 and $2,000.

Epic E-Bike Adventures (KSNV){p}{/p}
Epic E-Bike Adventures (KSNV)

Olsen said his customer base has increased beyond retirees looking for recreational trail rides.

“We get a lot of people that are starting to use them for Uber Eats in that 20, 30, 40 year-old demographic,” Olsen said.

Olsen said he stopped using a car a few years ago and found the costs added up quickly.

Advertisement

“I was paying car payments, insurance, gas, maintenance all of it. Within a month its about the same price as a bike. Most of our bikes are below $2,000. Very low maintenance and so it is just a great alternative. I throw Uber in there if I am going out. And all around, I am saving 500-600 a month just riding my bike,” Olsen said.

Olsen said e-bikes are also drawing hospitality workers and others looking for a quick way to cut commuting costs. He said most of the bikes in his shop get about a 50- to 80-mile range, and described one rider’s commute between Boulder Station and Mandalay Bay.

“Most of our bikes get about a 50 to 80 mile range. So I know one guy yesterday was talking. He goes from Boulder Station to Mandalay Bay and back. And the battery will make it the full round trip. And he still has 20 to 30 percent on his battery,” Olsen said.

E-bikes may not work for everyone, particularly parents who need to pick up young children from school and may face challenges related to passenger seating and time.

Olsen said the bikes are street legal and max out at 28 miles per hour. He adds they come with a two-year warranty that covers just about everything except brakes and tires. Olsen also said his store will not repair e-bikes that have been modified to go faster.

Advertisement



Source link

Continue Reading

Nevada

NSU flag football team’s undefeated inaugural season ends prematurely

Published

on

NSU flag football team’s undefeated inaugural season ends prematurely


As a rule, first-year sports programs are not expected to be competitive. It can take time to build an administration, coaching staff and team capable of competing with the best.

Nevada State University’s fledgling flag football team threw that rule out the window this year.

The Scorpions just finished an undefeated inaugural season in which they won eight of 13 games by shutout while outscoring opponents by an average of 42 points. They built such a reputation that their final two opponents canceled games that would have been played this week.

“How our season has gone, teams don’t want to come out here to lose,” said coach Brandon Pappillion, who coached at Bishop Gorman before taking over at NSU. “It was very disappointing. One canceled, then the next day the other called to cancel.”

Advertisement

The Scorpions surprised opponents, but they did not surprise themselves.

“Going undefeated was our goal from the beginning,” Pappillion said.

But there were no playoff wins. Though the Scorpions have applied to join the NAIA next year, they were unaffiliated this season and were ineligible for postseason play. The NAIA is a similar to the NCAA but consists of many smaller and private universities.

Pappillion said he can wait, as he is confident he’ll have another dominant squad next year.

Easy to recruit

Unlike coaches of most first-year programs, Pappillion was able to recruit many of the top players in the country. He didn’t have to look very far, as Clark County has become the country’s hotbed for flag football talent. All 15 of his players came from Southern Nevada high schools.

Advertisement

Former Liberty standout Kaylie Phillips, a quarterback and defensive back, said she knew from the start that the team would be competitive in its first season.

“I knew we’d do really good, but to go undefeated with all the shutouts was the surprising part,” the freshman said. “But I never thought we’d lose, even in the close games.”

There weren’t many of those. The Scorpions defeated Arizona State 21-12 and Arizona Christian 28-26. The remainder of the victories could be classified as blowouts, including last month’s 83-0 trouncing of USC.

The Scorpions gained so much attention that Phillips and teammate Brooklin Hill recently were named to the 24-player US Women’s National Team roster. Training camp begins this month, with the IFAF World Championship scheduled for this summer in Germany.

Elite athletes

Hill, a former Desert Oasis standout, played her freshman season at the University of St. Mary in Kansas before returning home for her sophomore year. She said her homecoming has been a welcome step up.

Advertisement

“(St. Mary) was a good learning experience,” said Hill, who jumped on the offer to transfer to NSU’s first-year program. “I was able to get something out of it. But with the coaches and the players here, we have a winning culture and we believe we have to be the best.”

Pappillion said that culture did not come by accident.

“I think Nevada has the best talent across the country,” he said. “We’ve been doing this longer than anybody else because we were one of the first states to start flag football. We have a little advantage.”

If all goes as planned, the Scorpions will qualify for postseason play next year.

“The girls knew that this year was a chance to get their feet wet,” Pappillion said. “But they all want to play for a championship. That has always been their goal.”

Advertisement

Contact Jeff Wollard at jwollard@reviewjournal.com.



Source link

Continue Reading

Trending