Advertisement
Guest User

Untitled

a guest
Aug 24th, 2015
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;For jquery
  2.  
  3. isGuiShowed = 0
  4.  
  5. SetKeyDelay, -1, -1
  6.  
  7. $1::
  8. Send {!}
  9. return
  10.  
  11.  
  12. $2::
  13. Send {"}
  14. Send {"}
  15. Send {Left}
  16. return
  17.  
  18. $3::
  19. Send {#}
  20. return
  21.  
  22. $4::
  23. Send {$}
  24. return
  25.  
  26. $5::
  27. Send `%
  28. return
  29.  
  30. $6::
  31. Send {^}
  32. return
  33.  
  34. $7::
  35. Send {&}
  36. return
  37.  
  38. $8::
  39. Send {*}
  40. return
  41.  
  42. $9::
  43. Send {(}
  44. Send {)}
  45. Send {Left}
  46. return
  47.  
  48. $0::
  49. Send {<}
  50. Send {>}
  51. Send {Left}
  52. return
  53.  
  54. $-::
  55. Send {_}
  56. return
  57.  
  58. $'::
  59. Send {'}
  60. Send {'}
  61. Send {Left}
  62. return
  63.  
  64. $[::
  65. Send {[}
  66. Send {]}
  67. Send {Left}
  68. return
  69.  
  70. $]::
  71. Send {{}
  72. Send {}}
  73. Send {Left}
  74. return
  75.  
  76. Numlock::
  77. if (isGuiShowed == 0) {
  78. isGuiShowed = 1
  79. GUI, 1:+AlwaysOnTop -Border -SysMenu +Owner -Caption +ToolWindow
  80. gui, add, text,,7: #include "" 8: #pragma comment(lib, "")
  81. gui, add, text,,4: const  5: return
  82. gui, show, center w320 h240, title
  83. } else {
  84. isGuiShowed = 0
  85. gui, destroy
  86. }
  87. return
  88.  
  89. RAlt::
  90. Send {End}
  91. return
  92.  
  93. NumPad7::
  94.     if (isGuiShowed == 0)
  95.     {
  96.         Send 7
  97.         return
  98.     }
  99.     gui, destroy
  100.     isGuiShowed = 0
  101.    
  102.     Send {#}include {"}{"}{Left}
  103. return
  104.  
  105. NumPad8::
  106.     if (isGuiShowed == 0)
  107.     {
  108.         Send 8
  109.         return
  110.     }
  111.     gui, destroy
  112.     isGuiShowed = 0
  113.    
  114.     Send {#}pragma comment(lib, {"}{"}){Left}{Left}
  115. return
  116.  
  117.  
  118. NumPad4::
  119.     if (isGuiShowed == 0)
  120.     {
  121.         Send 4
  122.         return
  123.     }
  124.     gui, destroy
  125.     isGuiShowed = 0
  126.  
  127.     Send const{Space}
  128. return
  129.  
  130. NumPad5::
  131.     if (isGuiShowed == 0)
  132.     {
  133.         Send 5
  134.         return
  135.     }
  136.     gui, destroy
  137.     isGuiShowed = 0
  138.  
  139.     Send return {;}{Left}
  140. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement