Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 15:13

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



$ 15 for what I can do this program AutoIt3

Discussion on $ 15 for what I can do this program AutoIt3 within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2013
Posts: 41
Received Thanks: 0
$ 15 for what I can do this program AutoIt3

$ 15 for what I can do this program AutoIt3

FileBinder is an advanced file binder which binds multiple file of any type and merges into a single executable file.

Set the drop location of all files and set the execution mode(Background,Foreground) of each file.
Predefined set of ICON Package is included set your desired icon.
Silently extracts and sequentially execute files.


Screen Shot

mourad0009 is offline  
Old 06/25/2013, 16:41   #2
 
FacePalmMan's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 426
Received Thanks: 129
actually this is just a tiny programm that uses the copy /b command! dont waste money for that!
i can make a programm for you that does the same in under 5 minutes & for free!
just wait a moment...
FacePalmMan is offline  
Old 06/25/2013, 22:27   #3
 
elite*gold: 0
Join Date: Apr 2013
Posts: 41
Received Thanks: 0
thank you

Quote:
Originally Posted by FacePalmMan View Post
actually this is just a tiny programm that uses the copy /b command! dont waste money for that!
i can make a programm for you that does the same in under 5 minutes & for free!
just wait a moment...
mourad0009 is offline  
Old 06/26/2013, 17:42   #4
 
FacePalmMan's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 426
Received Thanks: 129
there you are:
Code:
MsgBox(0,"Credits","Backfischer by FacePalmMan")
#include <Process.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("", 116, 116, 192, 124)
$Button1 = GUICtrlCreateButton("File 1", 8, 8, 99, 25)
GUICtrlSetBkColor($Button1, 0xFF0000)
$Button2 = GUICtrlCreateButton("File 2", 8, 32, 99, 25)
GUICtrlSetBkColor($Button2, 0xFF0000)
$Button3 = GUICtrlCreateButton("doctoroctoganapus", 8, 80, 99, 25)
$Input1 = GUICtrlCreateInput("Name for File 3", 8, 56, 97, 21)
GUISetState(@SW_SHOW)
$File1=False
$File2=False

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Button1
			$File1 = FileOpenDialog("Please choose the first file", @ScriptDir, "all files (*.*)")
			GUICtrlSetBkColor($Button1, 0x00FF00)
		Case $Button2
			$File2 = FileOpenDialog("Please choose the second file", @ScriptDir, "all files (*.*)")
			GUICtrlSetBkColor($Button2, 0x00FF00)
		Case $Button3
			If $File1=False Or $File2=False Then
				MsgBox(0,"Error","Please choose the files")
			Else
				$RDos=_RunDos('copy /b "'&$File1&'" + "'&$File2&'" "'&@ScriptDir&'\'&GUICtrlRead($Input1)&'"')
				MsgBox(0,"Credits","Backfischer by FacePalmMan")
			EndIf
	EndSwitch
WEnd
FacePalmMan is offline  
Old 06/26/2013, 18:35   #5
 
butter123's Avatar
 
elite*gold: 95
Join Date: May 2011
Posts: 982
Received Thanks: 189
are you shure you can combine 2 exe files with this?
butter123 is offline  
Old 06/29/2013, 06:17   #6
 
elite*gold: 0
Join Date: Apr 2013
Posts: 41
Received Thanks: 0
Quote:
Originally Posted by FacePalmMan View Post
there you are:
Code:
MsgBox(0,"Credits","Backfischer by FacePalmMan")
#include <Process.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("", 116, 116, 192, 124)
$Button1 = GUICtrlCreateButton("File 1", 8, 8, 99, 25)
GUICtrlSetBkColor($Button1, 0xFF0000)
$Button2 = GUICtrlCreateButton("File 2", 8, 32, 99, 25)
GUICtrlSetBkColor($Button2, 0xFF0000)
$Button3 = GUICtrlCreateButton("doctoroctoganapus", 8, 80, 99, 25)
$Input1 = GUICtrlCreateInput("Name for File 3", 8, 56, 97, 21)
GUISetState(@SW_SHOW)
$File1=False
$File2=False

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Button1
			$File1 = FileOpenDialog("Please choose the first file", @ScriptDir, "all files (*.*)")
			GUICtrlSetBkColor($Button1, 0x00FF00)
		Case $Button2
			$File2 = FileOpenDialog("Please choose the second file", @ScriptDir, "all files (*.*)")
			GUICtrlSetBkColor($Button2, 0x00FF00)
		Case $Button3
			If $File1=False Or $File2=False Then
				MsgBox(0,"Error","Please choose the files")
			Else
				$RDos=_RunDos('copy /b "'&$File1&'" + "'&$File2&'" "'&@ScriptDir&'\'&GUICtrlRead($Input1)&'"')
				MsgBox(0,"Credits","Backfischer by FacePalmMan")
			EndIf
	EndSwitch
WEnd
after I Binder
the "File2 does not start
mourad0009 is offline  
Old 06/29/2013, 09:57   #7
 
FacePalmMan's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 426
Received Thanks: 129
How to use my program:
1. put the files that you want to hide into a rar file
2. bind something with that rar file. (example: file1=Pootis.exe file2=Secret.rar file3=DatPootisIsASpy.exe)
3. if you want to see your secret files just rename that file to .rar
FacePalmMan is offline  
Old 06/29/2013, 14:15   #8
 
elite*gold: 0
Join Date: Apr 2013
Posts: 41
Received Thanks: 0
Quote:
Originally Posted by FacePalmMan View Post
How to use my program:
1. put the files that you want to hide into a rar file
2. bind something with that rar file. (example: file1=Pootis.exe file2=Secret.rar file3=DatPootisIsASpy.exe)
3. if you want to see your secret files just rename that file to .rar
you can change
1) run file1 =setup.exe

2) run file2 =test.exe

you understood
mourad0009 is offline  
Reply


Similar Threads Similar Threads
autoit3 ask.fm
05/27/2013 - AutoIt - 5 Replies
Hey, Ich benutze ie.au3 und wollte ein bild hochladen habe nurn problem ... Wenn man auf Bild ändern drückt wird nur ein fenster geöffnet und nicht eine seite : class="link-blue-underline" onclick="Settings.showUploadAvatarForm(" Foto hochladen"); return false;" href="#" Wollte fragen ob man das iwie mit autoit3 simluieren kann. Danke im Vorraus
Autoit3 Help
08/07/2010 - AutoIt - 42 Replies
Ich versuche einen AFK bot zu machen^^ Hier mal mein script: HotKeySet( "{F8}" , "Start") HotKeySet( "{F9}", "Pause") HotKeySet( "{F10}", "Beenden") Func Start()
AutoIt3 plz help
11/11/2009 - Mabinogi - 2 Replies
ummm niether autiit3 or autohotkey works on my mabinogi. i tried setting up fossil macro before and it just moved around curson around my mabi screen without clicking. i tried making autoit cobweb gathering bot but it didnt work. it is something to do with mabinogi being not a current window but what ever i try it just doesnt work. basically the problem is if i ran any of those macro they run on my desktop screen instead of my mabinogi window... how do you make them run on mabinogi window?...
AutoIt3
04/08/2008 - Metin2 - 4 Replies
Hi,ich habe mir mal AutoIt3 instaliert und jetzt blicke ich garnichts mehr durch wie man da z.b attk speed hack erstellt oder fishing bot ich verstehe nicht wo ich dieses zeug die codes also eintragen soll und ja ich weiss einfach auch nicht wie die codes heißen ES WÄRE TOLL WEN IHR MIR HELFEN KÖNNT!!::confused::o



All times are GMT +2. The time now is 15:13.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.