12-12-2013, 08:02 PM
Hi.
Here a small tool i made.. It simply opens multiple clients if needed,or with this,u can simply bypass launcher.
2
Source
#Region ### START Koda GUI section ### Form=
$form1 = GUICreate("Episode 3 Mutliclient Creator by Nymphetamine [toxic-l33t.ddns.net]", 714, 471, 492, 424)
$menufile = GUICtrlCreateMenu("File")
$menuhelp = GUICtrlCreateMenu("About...")
$menufileselectfolder = GUICtrlCreateMenuItem("Select folder", $menufile, 1)
$menuhelpinstruction = GUICtrlCreateMenuItem("Instruction", $menuhelp, 1)
$rd3 = GUICtrlCreateRadio("EPISODE 3", 230, 35, 80, 80)
GUICtrlSetTip(-1, "Use it if u want to create multi for your EP3 client", "Tip!", 1)
$btnskrot = GUICtrlCreateButton("Create a Shortcut", 257, 235, 241, 100)
GUICtrlSetState(-1, $gui_disable)
$selectedfolder = GUICtrlCreateInput("and select folder with your EP3 client by pressing File", 257, 140, 241, 20)
GUICtrlSetState(-1, $gui_disable)
$selectedfolder = GUICtrlCreateInput("Press on EP3", 257, 119, 241, 20)
GUICtrlSetState(-1, $gui_disable)
$lckb = GUICtrlCreateLabel("©Nymphetamine", 2, 2, 100, 100)
GUICtrlSetColor(7, 786687)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
AdlibRegister("check", 500)
While 1
$nmsg = GUIGetMsg()
Switch $nmsg
Case $gui_event_close
Exit
Case $lckb
ShellExecute("2
Case $menuhelpinstruction
MsgBox(0, "About..", "Released on toxic-l33t.ddns.net")
Sleep(100)
Case $menufileselectfolder
$folder = FileSelectFolder("Select folder with your EP3 client.", "")
GUICtrlSetData($selectedfolder, $folder)
Sleep(100)
If FileExists($folder & "\Bin\") Then
$zmiennystatus = "Folder selected, now choose the version..."
GUICtrlSetState($btnskrot, $gui_enable)
Else
$zmiennystatus = "You have selected wrong folder..."
EndIf
Sleep(100)
Case $btnskrot
Select
Case $rd3 AND BitAND(GUICtrlRead($rd3), $gui_checked) = $gui_checked
FileCreateShortcut($folder & "\Bin\Nksp.exe", @DesktopDir & "\EP3Multi.exe", Default, "fkzktlfgod!")
FileCreateShortcut($folder & "\Bin\Nksp.exe", $folder & "\Bin\EP3Multi.exe", Default, "fkzktlfgod!")
MsgBox(0, "Info", "Multi has been created in folder " & $folder & " and also on your desktop.")
complete()
Sleep(100)
EndSelect
EndSwitch
WEnd
Func complete()
$zmiennystatus = "And now, visit toxic-l33t.ddns.net!"
EndFunc
Func example1()
Local $hgui = GUICreate("GUI With Only Close", 250, 250, -1, -1, BitXOR($gui_ss_default_gui, $ws_minimizebox))
GUISetState(@SW_SHOW, $hgui)
While 1
Switch GUIGetMsg()
Case $gui_event_close
ExitLoop
EndSwitch
WEnd
GUIDelete($hgui)
EndFunc

