Page 1 of 1

Nprotect Gameguard blocking FastKeys?

Posted: Aug 30th, ’15, 13:36
by jogosdobb
Hello community

I've been using FastKeys to simulate mouse buttons as keys. MouseButton5 was my F2, MouseButton4 was my F4, MiddleMouseButton was my F7 and so on...

But, there was an update in the game and they added Nprotect Gameguard, sort of an hackshield, and all my shortcuts throught FastKeys stopped working

Is there any way to get around this and make it work in game?

Thank you for your time

Re: Nprotect Gameguard blocking FastKeys?

Posted: Aug 30th, ’15, 22:09
by Marko
Some games treat this as cheating and do everything they can to prevent it. It will probably not work but you can try some other alternatives like (Type: Command)

Code: Select all

SendPlay, {F2}
SetMouseDelay, 0, 50, Play
SendPlay, {F2}
Send {F2 down}{10}{F2 up}
SendPlay {F2 down}{F2 up}
Send {F2 down}
Sleep, 10
Send {F2 up}
More information:
http://www.autohotkey.com/docs/FAQ.htm#games

Re: Nprotect Gameguard blocking FastKeys?

Posted: Aug 31st, ’15, 22:27
by jogosdobb
Thanks a lot for you answer but as you said, it didn't work.

Should I use any of the Optional Attributes?

Re: Nprotect Gameguard blocking FastKeys?

Posted: Aug 31st, ’15, 23:33
by Marko
no, optional attributes will not help. After reading some other forums, it looks like there is no hack for Nprotect Gameguard yet.

Re: Nprotect Gameguard blocking FastKeys?

Posted: Sep 1st, ’15, 09:37
by jogosdobb
Yeah I've also researched a lot. I was hoping I would find some solution here.

Thank you anyway