FIFA Shift+Arrows_to_Numpad enable tricks

Ask gaming related questions (AHK v1.1 and older)
Antiquariatte
Posts: 2
Joined: 20 Feb 2017, 16:42

FIFA Shift+Arrows_to_Numpad enable tricks

20 Feb 2017, 17:30

Hi guys,

Sorry from above, if similar topic has been created.
I am completely green about the scripts, therefore I would like to ask you for help.
I play FIFA, on PC, on keyboard, and I record it on daily basis :D
Now, I downloaded the auto-hotkey script, which allows me to do player's tricks on arrows buttons while holding left shift down. Normal trick buttons are numeric keys 2, 4, 6, 8, on numeric keyboard.
Basically instead of jump with my fingers from normal arrows to num-pad arrows and back, I have everything in one place, just need to press and hold left shift. Script runs alright with the game,
but I have got that annoying message coming up - "71 hotkeys have been received in the last 1859ms Do you want to continue? Yes<>No". It comes very irregularly (sometimes 3 times a match, sometimes 1 time on 3 matches) - but always kicks me out from full screen mode, while Iam recording it and have to press "Yes" to continue play and start all over again. Frustrating.
I used to played FIFA 12, with this script and I had same problem, but I also had the program, which kept my FIFA always on the top, therefore that message didn't bothered me really, after few months stopped popin' up. Seems like the problem has been solved by itself :). Now I have new computer and I cannot find that program, so please if you could have look and tell me what's wrong with this script, I would appreciate it.

Here is the original script:


#SingleInstance force
#Persistent
#MaxThreadsPerHotkey 2000

Process, Priority, , High
SetKeyDelay -1, 0

SetTimer, WatchKeys, 10
return


WatchKeys:
if(!GetKeyState("LShift", "P"))
{
Send % GetKeyState("Numpad2") ? "{Numpad2 up}" : ""
Send % GetKeyState("Numpad4") ? "{Numpad4 up}" : ""
Send % GetKeyState("Numpad6") ? "{Numpad6 up}" : ""
Send % GetKeyState("Numpad8") ? "{Numpad8 up}" : ""
}
return

LShift & Up::
Send {Numpad8 down}
return
LShift & Up up::
Send {Numpad8 up}
return

LShift & Down::
Send {Numpad2 down}
return
LShift & Down up::
Send {Numpad2 up}
return

LShift & Left::
Send {Numpad4 down}
return
LShift & Left up::
Send {Numpad4 up}
return

LShift & Right::
Send {Numpad6 down}
return
LShift & Right up::
Send {Numpad6 up}
return

Up::Up
Down::Down
Left::Left
Right::Right
4GForce
Posts: 553
Joined: 25 Jan 2017, 03:18
Contact:

Re: FIFA Shift+Arrows_to_Numpad enable tricks

20 Feb 2017, 18:09

Real quick without testing id say delete those lines :

Code: Select all

#MaxThreadsPerHotkey 2000
SetTimer, WatchKeys, 10
return
WatchKeys: 
if(!GetKeyState("LShift", "P"))
{
Send % GetKeyState("Numpad2") ? "{Numpad2 up}" : ""
Send % GetKeyState("Numpad4") ? "{Numpad4 up}" : ""
Send % GetKeyState("Numpad6") ? "{Numpad6 up}" : ""
Send % GetKeyState("Numpad8") ? "{Numpad8 up}" : ""
}
return
Up::Up
Down::Down
Left::Left
Right::Right
Leaving you with this :

Code: Select all

#SingleInstance force
#Persistent 

Process, Priority, , High
SetKeyDelay -1, 0

LShift & Up::
	Send {Numpad8 down}
return
LShift & Up up::
	Send {Numpad8 up}
return

LShift & Down::
	Send {Numpad2 down}
return
LShift & Down up::
	Send {Numpad2 up}
return

LShift & Left::
	Send {Numpad4 down}
return
LShift & Left up::
	Send {Numpad4 up}
return

LShift & Right::
	Send {Numpad6 down}
return
LShift & Right up::
	Send {Numpad6 up}
return
Edit : #MaxThreadsPerHotkey 2000 ... this is probly the main cause of the problem.
Antiquariatte
Posts: 2
Joined: 20 Feb 2017, 16:42

Re: FIFA Shift+Arrows_to_Numpad enable tricks

20 Feb 2017, 18:39

Thanks 4GForce,

Works so far ;)

And doesn't :(

Image

Should that script from 4GForce be rewrited as new one in actual program, or its enough just to replace the notepad document attached to it?

So maybe different way, here is the link to download the script:

http://www.mediafire.com/?ahojjwm4a6sdjb6

Its 100% clean, not infected:
VinSmoke3ji
Posts: 3
Joined: 18 Mar 2020, 01:34

Re: FIFA Shift+Arrows_to_Numpad enable tricks

25 Mar 2020, 02:59

Hey so I tried this on fifa 20 it works I mean the tricks do, but after doing a skill if I press lefts stick aka the directions keys without shift the players stop in their tracks, is it because of key ghosting?

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 67 guests