I'm completely new to programming, with just a few hours of experience in Python and Scratch. I'm working on a project where I need to receive notifications on my phone whenever a specific line of text appears in a game that's constantly running on my PC. For example, if a popup in the game says 'hello', I want to get notified on my phone. Can someone guide me on how to code this?
1 Answer
It can be tricky depending on whether the game has an API available. If it doesn't, one idea is to take screenshots at set intervals and check for the message you're looking for. If that message shows up, you could send an email to your phone. However, for a proper notification system, you might need to develop a mobile app that can receive notifications from your PC.

The game I'm working with is Roblox, thanks for the suggestion!