I’ve tried looking through previous answers, but can’t find anything that quite fits the bill.
Basically, all I want is a script in void Start() just to turn numlock on. It doesn’t matter if it’s pressed, or if it was on in the first place, just need to make certain it is on at the start. I’m sure there must be a relatively simple code to do this. Just to note, I am using C#.
I would recommend starting here for information on this topic. Keyboard manipulation would be something the OS (Windows, in the case of the link) would handle, rather than a game engine. I don’t know what may or may not be usable in Unity, but that’s probably a good place to start.
Edit: Since the links from that site weren’t great, here’s another reference to “keybd_event”.