Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1.  
  2. Gui, Add, Text, x5 y5 w324 h19 , Episode
  3. Gui, Add, Edit, x5 y29 w324 h24 vEpisode, 1
  4.  
  5. Gui, Add, Text, x5 y58 w324 h19 , Level
  6. Gui, Add, Edit, x5 y79 w324 h24 vLevel, 02
  7.  
  8.  
  9. Gui, Add, Text, x5 y120 w324 h19 , Press F12 to start level (must be in-game)
  10.  
  11.  
  12. Gui, Show, w310 h150, Duke Restarter
  13.  
  14.  
  15.  
  16. #IfWinActive Duke Nukem 3D
  17. F12::
  18. BlockInput On
  19.  
  20. GuiControlGet, Episode
  21. GuiControlGet, Level
  22.  
  23. String=dnscotty%Episode%%Level%
  24.  
  25.  
  26. Loop, Parse, String
  27.  
  28. {
  29.  
  30. Send {%A_LoopField% down}{%A_LoopField% up}
  31. Sleep 25
  32.  
  33. }
  34.  
  35.  
  36. BlockInput Off
  37. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement