NBA 2K16 KEYBOARD CONTROLS

download autohotkey:

Numpad0-play calling

Numpad1-charge,screen

Numpad2-pro stick (up)

Numpad3 - block, grab rebound

Numpad4-pro stick (left)

Numpad5-shoot

Numpad6-pro stick (right)

Numpad7-play calling

Numpad8-pro stick (down)

Numpad9- play calling

NumpadEnter-sprint

spacebar-pass

w-up

s-down

a-left

d-right

CODE:

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.

; #Warn ; Enable warnings to assist with detecting common errors.

SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

;NumPad-CODE

;remapping normal number keys to make them

;behave like numpad numbers

0::Numpad0

s::Numpad1

c::Numpad2

d::Numpad3

f::Numpad4

a::Numpad5

r::Numpad6

7::Numpad7

z::Numpad8

9::Numpad9

E::NumpadEnter

x::Space

Up::w

Down::s

Left::a

Right::d

e::NumpadEnter

;using the Appskey to turn on/off remapping code

Appskey::

Suspend,Toggle

return