Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

[Szukam]Adres VK_W i VK_S


ominges

Rekomendowane odpowiedzi

Opublikowano

Na to nie ma adresów, napisz po co ci one i wgl to może pomogę.

"Jesteśmy ludźmi, bo popełniamy błędy i na nich się uczymy."

Opublikowano

To się funkcję ustawia na dany klawisz np: if(GetAsyncKeyState(VK_SPACE) ) , if(GetAsyncKeyState(VK_CONTROL))

upaodl131d2.png

 

 

 

 

Moje Cheaty :

No_Menu

http://www.mpcforum.pl/topic/624388-undetected-no-menu-jacello/

http://www.mpcforum.pl/topic/622343-undetected-no-menu/

D3D:

http://www.mpcforum.pl/topic/628413-undetected-d3d-jacello-v10/

http://www.mpcforum.pl/topic/629602-undetected-d3d-jacello-v11/page__pid__4526048#entry4526048

 

 

Opublikowano

Masz wszystkie istniejące wirtualne klawisze dostępne w c++:

 

/*
* Virtual Keys, Standard Set
*/
#ifndef VK_LBUTTON
#define VK_LBUTTON		0x01
#endif
#ifndef VK_RBUTTON
#define VK_RBUTTON		0x02
#endif
#ifndef VK_CANCEL
#define VK_CANCEL		 0x03
#endif
#ifndef VK_MBUTTON
#define VK_MBUTTON		0x04  
#endif
#if(_WIN32_WINNT >= 0x0500)
#ifndef VK_XBUTTON1
#define VK_XBUTTON1	   0x05
#endif
#ifndef VK_XBUTTON2
#define VK_XBUTTON2	   0x06
#endif
#endif /* _WIN32_WINNT >= 0x0500 */
#ifndef VK_BACK
#define VK_BACK		   0x08
#endif
#ifndef VK_BACK
#define VK_TAB			0x09
#endif
#ifndef VK_CLEAR
#define VK_CLEAR		  0x0C
#endif
#ifndef VK_RETURN
#define VK_RETURN		 0x0D
#endif
#ifndef VK_SHIFT
#define VK_SHIFT		  0x10
#endif
#ifndef VK_CONTROL
#define VK_CONTROL		0x11
#endif
#ifndef VK_MENU
#define VK_MENU		   0x12
#endif
#ifndef VK_PAUSE
#define VK_PAUSE		  0x13
#endif
#ifndef VK_CAPITAL
#define VK_CAPITAL		0x14
#endif
#ifndef VK_KANA
#define VK_KANA		   0x15
#endif
#ifndef VK_HANGEUL
#define VK_HANGEUL		0x15
#endif
#ifndef VK_HANGUL
#define VK_HANGUL		 0x15
#endif
#ifndef VK_JUNJA
#define VK_JUNJA		  0x17
#endif
#ifndef VK_FINAL
#define VK_FINAL		  0x18
#endif
#ifndef VK_HANJA
#define VK_HANJA		  0x19
#endif
#ifndef VK_KANJI
#define VK_KANJI		  0x19
#endif
#ifndef VK_ESCAPE
#define VK_ESCAPE		 0x1B
#endif
#ifndef VK_CONVERT
#define VK_CONVERT		0x1C
#endif
#ifndef VK_NONCONVERT
#define VK_NONCONVERT	 0x1D
#endif
#ifndef VK_ACCEPT
#define VK_ACCEPT		 0x1E
#endif
#ifndef VK_MODECHANGE
#define VK_MODECHANGE	 0x1F
#endif
#ifndef VK_SPACE
#define VK_SPACE		  0x20
#endif
#ifndef VK_PRIOR
#define VK_PRIOR		  0x21
#endif
#ifndef VK_NEXT
#define VK_NEXT		   0x22
#endif
#ifndef VK_END
#define VK_END			0x23
#endif
#ifndef VK_HOME
#define VK_HOME		   0x24
#endif
#ifndef VK_LEFT
#define VK_LEFT		   0x25
#endif
#ifndef VK_UP
#define VK_UP			 0x26
#endif
#ifndef VK_RIGHT
#define VK_RIGHT		  0x27
#endif
#ifndef VK_DOWN
#define VK_DOWN		   0x28
#endif
#ifndef VK_SELECT
#define VK_SELECT		 0x29
#endif
#ifndef VK_PRINT
#define VK_PRINT		  0x2A
#endif
#ifndef VK_EXECUTE
#define VK_EXECUTE		0x2B
#endif
#ifndef VK_SNAPSHOT
#define VK_SNAPSHOT	   0x2C
#endif
#ifndef VK_INSERT
#define VK_INSERT		 0x2D
#endif
#ifndef VK_DELETE
#define VK_DELETE		 0x2E
#endif
#ifndef VK_HELP
#define VK_HELP		   0x2F
#endif
#ifndef VK_0
#define VK_0 0x30
#endif
#ifndef VK_1
#define VK_1 0x31
#endif
#ifndef VK_2
#define VK_2 0x32
#endif
#ifndef VK_3
#define VK_3 0x33
#endif
#ifndef VK_4
#define VK_4 0x34
#endif
#ifndef VK_5
#define VK_5 0x35
#endif
#ifndef VK_6
#define VK_6 0x36
#endif
#ifndef VK_7
#define VK_7 0x37
#endif
#ifndef VK_8
#define VK_8 0x38
#endif
#ifndef VK_9
#define VK_9 0x39
#endif
#ifndef VK_A
#define VK_A 0x41
#endif
#ifndef VK_B
#define VK_B 0x42
#endif
#ifndef VK_C
#define VK_C 0x43
#endif
#ifndef VK_D
#define VK_D 0x44
#endif
#ifndef VK_E
#define VK_E 0x45
#endif
#ifndef VK_F
#define VK_F 0x46
#endif
#ifndef VK_G
#define VK_G 0x47
#endif
#ifndef VK_H
#define VK_H 0x48
#endif
#ifndef VK_I
#define VK_I 0x49
#endif
#ifndef VK_J
#define VK_J 0x4A
#endif
#ifndef VK_K
#define VK_K 0x4B
#endif
#ifndef VK_L
#define VK_L 0x4C
#endif
#ifndef VK_M
#define VK_M 0x4D
#endif
#ifndef VK_N
#define VK_N 0x4E
#endif
#ifndef VK_O
#define VK_O 0x4F
#endif
#ifndef VK_P
#define VK_P 0x50
#endif
#ifndef VK_Q
#define VK_Q 0x51
#endif
#ifndef VK_R
#define VK_R 0x52
#endif
#ifndef VK_S
#define VK_S 0x53
#endif
#ifndef VK_T
#define VK_T 0x54
#endif
#ifndef VK_U
#define VK_U 0x55
#endif
#ifndef VK_V
#define VK_V 0x56
#endif
#ifndef VK_W
#define VK_W 0x57
#endif
#ifndef VK_X
#define VK_X 0x58
#endif
#ifndef VK_Y
#define VK_Y 0x59
#endif
#ifndef VK_Z
#define VK_Z 0x5A
#endif
#ifndef VK_LWIN
#define VK_LWIN		   0x5B
#endif
#ifndef VK_RWIN
#define VK_RWIN		   0x5C
#endif
#ifndef VK_APPS
#define VK_APPS		   0x5D
#endif
#ifndef VK_SLEEP
#define VK_SLEEP		  0x5F
#endif
#ifndef VK_NUMPAD0
#define VK_NUMPAD0		0x60
#endif
#ifndef VK_NUMPAD1
#define VK_NUMPAD1		0x61
#endif
#ifndef VK_NUMPAD2
#define VK_NUMPAD2		0x62
#endif
#ifndef VK_NUMPAD3
#define VK_NUMPAD3		0x63
#endif
#ifndef VK_NUMPAD4
#define VK_NUMPAD4		0x64
#endif
#ifndef VK_NUMPAD5
#define VK_NUMPAD5		0x65
#endif
#ifndef VK_NUMPAD6
#define VK_NUMPAD6		0x66
#endif
#ifndef VK_NUMPAD7
#define VK_NUMPAD7		0x67
#endif
#ifndef VK_NUMPAD8
#define VK_NUMPAD8		0x68
#endif
#ifndef VK_NUMPAD9
#define VK_NUMPAD9		0x69
#endif
#ifndef VK_MULTIPLY
#define VK_MULTIPLY	   0x6A
#endif
#ifndef VK_ADD
#define VK_ADD			0x6B
#endif
#ifndef VK_SEPARATOR
#define VK_SEPARATOR	  0x6C
#endif
#ifndef VK_SUBTRACT
#define VK_SUBTRACT	   0x6D
#endif
#ifndef VK_DECIMAL
#define VK_DECIMAL		0x6E
#endif
#ifndef VK_DIVIDE
#define VK_DIVIDE		 0x6F
#endif
#ifndef VK_F1
#define VK_F1			 0x70
#endif
#ifndef VK_F2
#define VK_F2			 0x71
#endif
#ifndef VK_F3
#define VK_F3			 0x72
#endif
#ifndef VK_F4
#define VK_F4			 0x73
#endif
#ifndef VK_F5
#define VK_F5			 0x74
#endif
#ifndef VK_F6
#define VK_F6			 0x75
#endif
#ifndef VK_F7
#define VK_F7			 0x76
#endif
#ifndef VK_F8
#define VK_F8			 0x77
#endif
#ifndef VK_F9
#define VK_F9			 0x78
#endif
#ifndef VK_F10
#define VK_F10			0x79
#endif
#ifndef VK_F11
#define VK_F11			0x7A
#endif
#ifndef VK_F12
#define VK_F12			0x7B
#endif
#ifndef VK_F13
#define VK_F13			0x7C
#endif
#ifndef VK_F14
#define VK_F14			0x7D
#endif
#ifndef VK_F15
#define VK_F15			0x7E
#endif
#ifndef VK_F16
#define VK_F16			0x7F
#endif
#ifndef VK_F17
#define VK_F17			0x80
#endif
#ifndef VK_F18
#define VK_F18			0x81
#endif
#ifndef VK_F19
#define VK_F19			0x82
#endif
#ifndef VK_F20
#define VK_F20			0x83
#endif
#ifndef VK_F21
#define VK_F21			0x84
#endif
#ifndef VK_F22
#define VK_F22			0x85
#endif
#ifndef VK_F23
#define VK_F23			0x86
#endif
#ifndef VK_F24
#define VK_F24			0x87
#endif
#ifndef VK_NUMLOCK
#define VK_NUMLOCK		0x90
#endif
#ifndef VK_SCROLL
#define VK_SCROLL		 0x91
#endif
#ifndef VK_OEM_NEC_EQUAL
#define VK_OEM_NEC_EQUAL  0x92
#endif
#ifndef VK_OEM_FJ_JISHO
#define VK_OEM_FJ_JISHO   0x92
#endif
#ifndef VK_OEM_FJ_MASSHOU
#define VK_OEM_FJ_MASSHOU 0x93
#endif
#ifndef VK_OEM_FJ_TOUROKU
#define VK_OEM_FJ_TOUROKU 0x94  
#endif
#ifndef VK_OEM_FJ_LOYA
#define VK_OEM_FJ_LOYA	0x95
#endif
#ifndef VK_OEM_FJ_ROYA
#define VK_OEM_FJ_ROYA	0x96
#endif
#ifndef VK_LSHIFT
#define VK_LSHIFT		 0xA0
#endif
#ifndef VK_RSHIFT
#define VK_RSHIFT		 0xA1
#endif
#ifndef VK_LCONTROL
#define VK_LCONTROL	   0xA2
#endif
#ifndef VK_RCONTROL
#define VK_RCONTROL	   0xA3
#endif
#ifndef VK_LMENI
#define VK_LMENU		  0xA4
#endif
#ifndef VK_RMENU
#define VK_RMENU		  0xA5
#endif
#if(_WIN32_WINNT >= 0x0500)
#ifndef VK_BROWSER_BACK
#define VK_BROWSER_BACK		0xA6
#endif
#ifndef VK_BROWSER_FORWARD
#define VK_BROWSER_FORWARD	 0xA7
#endif
#ifndef VK_BROWSER_REFRESH
#define VK_BROWSER_REFRESH	 0xA8
#endif
#ifndef VK_BROWSER_STOP
#define VK_BROWSER_STOP		0xA9
#endif
#ifndef VK_BROWSER_SEARCH
#define VK_BROWSER_SEARCH	  0xAA
#endif
#ifndef VK_BROWSER_FAVORITES
#define VK_BROWSER_FAVORITES   0xAB
#endif
#ifndef VK_BROWSER_HOME
#define VK_BROWSER_HOME		0xAC
#endif
#ifndef VK_VOLUME_MUTE
#define VK_VOLUME_MUTE		 0xAD
#endif
#ifndef VK_VOLUME_DOWN
#define VK_VOLUME_DOWN		 0xAE
#endif
#ifndef VK_VOLUME_UP
#define VK_VOLUME_UP		   0xAF
#endif
#ifndef VK_MEDIA_NEXT_TRACK
#define VK_MEDIA_NEXT_TRACK	0xB0
#endif
#ifndef VK_MEDIA_PREV_TRACK
#define VK_MEDIA_PREV_TRACK	0xB1
#endif
#ifndef VK_MEDIA_STOP
#define VK_MEDIA_STOP		  0xB2
#endif
#ifndef VK_MEDIA_PLAY_PAUSE
#define VK_MEDIA_PLAY_PAUSE	0xB3
#endif
#ifndef VK_LAUNCH_MAIL
#define VK_LAUNCH_MAIL		 0xB4
#endif
#ifndef VK_LAUNCH_MEDIA_SELECT
#define VK_LAUNCH_MEDIA_SELECT 0xB5
#endif
#ifndef VK_LAUNCH_APP1
#define VK_LAUNCH_APP1		 0xB6
#endif
#ifndef VK_LAUNCH_APP2
#define VK_LAUNCH_APP2		 0xB7
#endif
#endif /* _WIN32_WINNT >= 0x0500 */
#ifndef VK_OEM_1
#define VK_OEM_1		  0xBA   // ';:' for US
#endif
#ifndef VK_OEM_PLUS
#define VK_OEM_PLUS	   0xBB   // '+' any country
#endif
#ifndef VK_OEM_COMMA
#define VK_OEM_COMMA	  0xBC   // ',' any country
#endif
#ifndef VK_OEM_MINUS
#define VK_OEM_MINUS	  0xBD   // '-' any country
#endif
#ifndef VK_OEM_PERIOD
#define VK_OEM_PERIOD	 0xBE   // '.' any country
#endif
#ifndef VK_OEM_2
#define VK_OEM_2		  0xBF   // '/?' for US
#endif
#ifndef VK_OEM_3
#define VK_OEM_3		  0xC0   // '`~' for US
#endif
#ifndef VK_OEM_4
#define VK_OEM_4		  0xDB  //  '[{' for US
#endif
#ifndef VK_OEM_5
#define VK_OEM_5		  0xDC  //  '\|' for US
#endif
#ifndef VK_OEM_6
#define VK_OEM_6		  0xDD  //  ']}' for US
#endif
#ifndef VK_OEM_7
#define VK_OEM_7		  0xDE  //  ''"' for US
#endif
#ifndef VK_OEM_8
#define VK_OEM_8		  0xDF
#endif
#ifndef VK_OEM_AX
#define VK_OEM_AX		 0xE1  //  'AX' key on Japanese AX kbd
#endif
#ifndef VK_OEM_102
#define VK_OEM_102		0xE2  //  "<>" or "\|" on RT 102-key kbd.
#endif
#ifndef VK_ICO_HELP
#define VK_ICO_HELP	   0xE3  //  Help key on ICO
#endif
#ifndef VK_ICO_00
#define VK_ICO_00		 0xE4  //  00 key on ICO
#endif
#if(WINVER >= 0x0400)
#ifndef VK_PROCESSKEY
#define VK_PROCESSKEY	 0xE5
#endif
#endif /* WINVER >= 0x0400 */
#ifndef VK_ICO_CLEAR
#define VK_ICO_CLEAR	  0xE6
#endif

#if(_WIN32_WINNT >= 0x0500)
#ifndef VK_PACKET
#define VK_PACKET		 0xE7
#endif
#endif /* _WIN32_WINNT >= 0x0500 */
#ifndef VK_OEM_RESET
#define VK_OEM_RESET	  0xE9
#ifndef VK_OEM_JUMP
#define VK_OEM_JUMP	   0xEA
#ifndef VK_OEM_PA1
#define VK_OEM_PA1		0xEB
#endif
#ifndef VK_OEM_PA2
#define VK_OEM_PA2		0xEC
#endif
#ifndef VK_OEM_PA3
#define VK_OEM_PA3		0xED
#endif
#ifndef VK_OEM_WSCTRL
#define VK_OEM_WSCTRL	 0xEE
#endif
#ifndef VK_OEM_CUSEL
#define VK_OEM_CUSEL	  0xEF
#endif
#ifndef VK_OEM_ATTN
#define VK_OEM_ATTN	   0xF0
#endif
#ifndef VK_OEM_FINISH
#define VK_OEM_FINISH	 0xF1
#endif
#ifndef VK_OEM_COPY
#define VK_OEM_COPY	   0xF2
#endif
#ifndef VK_OEM_AUTO
#define VK_OEM_AUTO	   0xF3
#endif
#ifndef VK_OEM_ENLW
#define VK_OEM_ENLW	   0xF4
#endif
#ifndef VK_OEM_BACKTAB
#define VK_OEM_BACKTAB	0xF5
#endif
#ifndef VK_ATTN
#define VK_ATTN		   0xF6
#endif
#ifndef VK_CRSEL
#define VK_CRSEL		  0xF7
#endif
#ifndef VK_EXSEL
#define VK_EXSEL		  0xF8
#endif
#ifndef VK_EREOF
#define VK_EREOF		  0xF9
#endif
#ifndef VK_PLAY
#define VK_PLAY		   0xFA
#endif
#ifndef VK_ZOOM
#define VK_ZOOM		   0xFB
#endif
#ifndef VK_NONAME
#define VK_NONAME		 0xFC
#endif
#ifndef VK_PA1
#define VK_PA1			0xFD
#endif
#ifndef VK_OEM_CLEAR
#define VK_OEM_CLEAR	  0xFE
#endif
/*
* Virtual Keys, DarkCult Set
*/
#ifndef VK_ENTER
#define VK_ENTER VK_RETURN
#endif

 

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...