I need help finding activation key .asi

Safa

Well-known member
Joined
Feb 24, 2015
Messages
342
Reaction score
127
If it doesn't work, try changing the key.

Try to change

C++:
if (GetKeyState(VK_MULTIPLY) & 0x8000)

to

C++:
if (GetKeyState(VK_MENU) & 0x8000)

Should toggle on ALT Key.

Maybe works, maybe not, idk.
 

samirtem

Member
Joined
Jan 15, 2019
Messages
10
Reaction score
0
well i got the script but after i change it how i can convert the source got to an .asi?
If it doesn't work, try changing the key.

Try to change

C++:
if (GetKeyState(VK_MULTIPLY) & 0x8000)

to

C++:
if (GetKeyState(VK_MENU) & 0x8000)

Should toggle on ALT Key.

Maybe works, maybe not, idk.
well i have the source code after i change it how can i make it again to an .asi file?
 
Top