Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
nonymoosee committed Jan 16, 2018
1 parent 78a623b commit e5d286f
Show file tree
Hide file tree
Showing 3 changed files with 843 additions and 6 deletions.
15 changes: 9 additions & 6 deletions Loaderv2.51.au3
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@ EndIf
;If you dragged a file then we just install without a GUI
If $CmdLine[0] <> 0 Then
Opt("WinTitleMatchMode", 4)
Local $exists = WinExists("Cydia Impactor")
Local $exists = WinExists("[TITLE:Cydia Impactor; CLASS:wxWindowNR]")
If $exists = 0 Then ShellExecute(@ScriptDir & "\Impactor.exe")
WinWait("Cydia Impactor")
Sleep(500)
WinWait("[TITLE:Cydia Impactor;CLASS:wxWindowNR]")
WinActivate("[TITLE:Cydia Impactor; CLASS:wxWindowNR]")
Sleep(800)
WinMenuSelectItem("Cydia Impactor", "", "&Device", "&Install Package...")
Expand Down Expand Up @@ -186,9 +187,10 @@ EndFunc ;==>ManLaunch

Func LoadIPA($Selectedwhat)
Opt("WinTitleMatchMode", 4)
Local $exists = WinExists("Cydia Impactor")
Local $exists = WinExists("[TITLE:Cydia Impactor; CLASS:wxWindowNR]")
If $exists = 0 Then ShellExecute(@ScriptDir & "\Impactor.exe")
WinWait("Cydia Impactor")
Sleep(500)
WinWait("[TITLE:Cydia Impactor;CLASS:wxWindowNR]")
WinActivate("[TITLE:Cydia Impactor; CLASS:wxWindowNR]")
Sleep(800)
WinMenuSelectItem("Cydia Impactor", "", "&Device", "&Install Package...")
Expand All @@ -204,9 +206,10 @@ EndFunc ;==>LoadIPA

Func RevokeCerts() ; needs to be updated
Opt("WinTitleMatchMode", 4)
Local $exists = WinExists("Cydia Impactor")
Local $exists = WinExists("[TITLE:Cydia Impactor; CLASS:wxWindowNR]")
If $exists = 0 Then ShellExecute(@ScriptDir & "\Impactor.exe")
WinWait("Cydia Impactor")
Sleep(500)
WinWait("[TITLE:Cydia Impactor;CLASS:wxWindowNR]")
WinActivate("[TITLE:Cydia Impactor; CLASS:wxWindowNR]")
WinMenuSelectItem("Cydia Impactor", "", "&Xcode", "&Revoke Certificates")
Sleep(100)
Expand Down
Binary file modified Loaderv2.51.exe
Binary file not shown.
Loading

0 comments on commit e5d286f

Please sign in to comment.