Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.45 KB | None | 0 0
  1. #Include "GUIs.au3"
  2. #Include "Stuff.au3"
  3. #Include "Missions.au3"
  4. #Include "Translations.au3"
  5.  
  6. $arr_sTranslation = _Translations_Get("IT")
  7.  
  8. If @error Then
  9.     ConsoleWriteError(" *** Impossibile caricare la traduzione ***" & @CRLF)
  10.     _Stuff_ExitWithCode(1)
  11. EndIf
  12.  
  13. Dim $hLoginWindow, $arr_hLoginControls[4][7]
  14.  
  15. _GUIs_LoginScreen($hLoginWindow, $arr_hLoginControls, $arr_sTranslation)
  16.  
  17. HotKeySet("{ESC}", "_Stuff_Exit0")
  18.  
  19. While 1
  20.     Sleep(50)
  21. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement