View Single Post
  #2  
Old 29-08-2016, 18:17
L0v3craft's Avatar
L0v3craft L0v3craft is offline
Registered User
 
Join Date: Dec 2015
Location: Rome
Posts: 96
Thanks: 421
Thanked 24 Times in 15 Posts
L0v3craft is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
Find this in script

procedure LockKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
make it

procedure LockKeyDown(Sender: TObject);

then find:
OnKeyDown:=@LockKeyDown;

Make this
OnClick:=@LockKeyDown;

Note: This is not tested, I wrote code with Notepad.
I got this

Reply With Quote