-
-
Notifications
You must be signed in to change notification settings - Fork 18
keyboard_set_numlock
drewmccluskey edited this page Feb 12, 2019
·
2 revisions
Sets the numlock on or off
keyboard_set_numlock(set)
Argument | Description |
---|---|
bool set |
The bool for numlock |
Returns: bool
This function allows the user to turn on or off the numlock. Inputting false will set the numlock off, inputting true will turn numlock on.
keyboard_set_numlock(false);
This code will turn off numlock.
Back to Keyboard