Advertisement
Guest User

Keys.lua

a guest
Apr 28th, 2013
3,695
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.15 KB | None | 0 0
  1. Keys = {}
  2. Keys.None = 0
  3. Keys.LButton = 1
  4. Keys.RButton = 2
  5. Keys.Cancel = 3
  6. Keys.MButton = 4
  7. Keys.XButton1 = 5
  8. Keys.XButton2 = 6
  9. Keys.Back = 8
  10. Keys.Tab = 9
  11. Keys.LineFeed = 10
  12. Keys.Clear = 12
  13. Keys.Return = 13
  14. Keys.ShiftKey = 16
  15. Keys.ControlKey = 17
  16. Keys.Menu = 18
  17. Keys.Pause = 19
  18. Keys.Capital = 20
  19. Keys.KanaMode = 21
  20. Keys.JunjaMode = 23
  21. Keys.FinalMode = 24
  22. Keys.HanjaMode = 25
  23. Keys.Escape = 27
  24. Keys.IMEConvert = 28
  25. Keys.IMENonconvert = 29
  26. Keys.IMEAceept = 30
  27. Keys.IMEModeChange = 31
  28. Keys.Space = 32
  29. Keys.PageUp = 33
  30. Keys.Next = 34
  31. Keys.End = 35
  32. Keys.Home = 36
  33. Keys.Left = 37
  34. Keys.Up = 38
  35. Keys.Right = 39
  36. Keys.Down = 40
  37. Keys.Select = 41
  38. Keys.Print = 42
  39. Keys.Execute = 43
  40. Keys.PrintScreen = 44
  41. Keys.Insert = 45
  42. Keys.Delete = 46
  43. Keys.Help = 47
  44. Keys.D0 = 48
  45. Keys.D1 = 49
  46. Keys.D2 = 50
  47. Keys.D3 = 51
  48. Keys.D4 = 52
  49. Keys.D5 = 53
  50. Keys.D6 = 54
  51. Keys.D7 = 55
  52. Keys.D8 = 56
  53. Keys.D9 = 57
  54. Keys.A = 65
  55. Keys.B = 66
  56. Keys.C = 67
  57. Keys.D = 68
  58. Keys.E = 69
  59. Keys.F = 70
  60. Keys.G = 71
  61. Keys.H = 72
  62. Keys.I = 73
  63. Keys.J = 74
  64. Keys.K = 75
  65. Keys.L = 76
  66. Keys.M = 77
  67. Keys.N = 78
  68. Keys.O = 79
  69. Keys.P = 80
  70. Keys.Q = 81
  71. Keys.R = 82
  72. Keys.S = 83
  73. Keys.T = 84
  74. Keys.U = 85
  75. Keys.V = 86
  76. Keys.W = 87
  77. Keys.X = 88
  78. Keys.Y = 89
  79. Keys.Z = 90
  80. Keys.LWin = 91
  81. Keys.RWin = 92
  82. Keys.Apps = 93
  83. Keys.Sleep = 95
  84. Keys.NumPad0 = 96
  85. Keys.NumPad1 = 97
  86. Keys.NumPad2 = 98
  87. Keys.NumPad3 = 99
  88. Keys.NumPad4 = 100
  89. Keys.NumPad5 = 101
  90. Keys.NumPad6 = 102
  91. Keys.NumPad7 = 103
  92. Keys.NumPad8 = 104
  93. Keys.NumPad9 = 105
  94. Keys.Multiply = 106
  95. Keys.Add = 107
  96. Keys.Separator = 108
  97. Keys.Subtract = 109
  98. Keys.Decimal = 110
  99. Keys.Divide = 111
  100. Keys.F1 = 112
  101. Keys.F2 = 113
  102. Keys.F3 = 114
  103. Keys.F4 = 115
  104. Keys.F5 = 116
  105. Keys.F6 = 117
  106. Keys.F7 = 118
  107. Keys.F8 = 119
  108. Keys.F9 = 120
  109. Keys.F10 = 121
  110. Keys.F11 = 122
  111. Keys.F12 = 123
  112. Keys.F13 = 124
  113. Keys.F14 = 125
  114. Keys.F15 = 126
  115. Keys.F16 = 127
  116. Keys.F17 = 128
  117. Keys.F18 = 129
  118. Keys.F19 = 130
  119. Keys.F20 = 131
  120. Keys.F21 = 132
  121. Keys.F22 = 133
  122. Keys.F23 = 134
  123. Keys.F24 = 135
  124. Keys.NumLock = 144
  125. Keys.Scroll = 145
  126. Keys.LShiftKey = 160
  127. Keys.RShiftKey = 161
  128. Keys.LControlKey = 162
  129. Keys.RControlKey = 163
  130. Keys.LMenu = 164
  131. Keys.RMenu = 165
  132. Keys.BrowserBack = 166
  133. Keys.BrowserForward = 167
  134. Keys.BrowserRefresh = 168
  135. Keys.BrowserStop = 169
  136. Keys.BrowserSearch = 170
  137. Keys.BrowserFavorites = 171
  138. Keys.BrowserHome = 172
  139. Keys.VolumeMute = 173
  140. Keys.VolumeDown = 174
  141. Keys.VolumeUp = 175
  142. Keys.MediaNextTrack = 176
  143. Keys.MediaPreviousTrack = 177
  144. Keys.MediaStop = 178
  145. Keys.MediaPlayPause = 179
  146. Keys.LaunchMail = 180
  147. Keys.SelectMedia = 181
  148. Keys.LaunchApplication1 = 182
  149. Keys.LaunchApplication2 = 183
  150. Keys.Oem1 = 186
  151. Keys.Oemplus = 187
  152. Keys.Oemcomma = 188
  153. Keys.OemMinus = 189
  154. Keys.OemPeriod = 190
  155. Keys.OemQuestion = 191
  156. Keys.Oemtilde = 192
  157. Keys.OemOpenBrackets = 219
  158. Keys.Oem5 = 220
  159. Keys.Oem6 = 221
  160. Keys.Oem7 = 222
  161. Keys.Oem8 = 223
  162. Keys.OemBackslash = 226
  163. Keys.ProcessKey = 229
  164. Keys.Packet = 231
  165. Keys.Attn = 246
  166. Keys.Crsel = 247
  167. Keys.Exsel = 248
  168. Keys.EraseEof = 249
  169. Keys.Play = 250
  170. Keys.Zoom = 251
  171. Keys.NoName = 252
  172. Keys.Pa1 = 253
  173. Keys.OemClear = 254
  174. Keys.KeyCode = 65535
  175. Keys.Shift = 65536
  176. Keys.Control = 131072
  177. Keys.Alt = 262144
  178. Keys.Modifiers = -65536
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement