
SalazarCheats
Active Members-
Posts
197 -
Joined
-
Last visited
About SalazarCheats
- Birthday 01/26/1993
Profile Information
-
Location
uk
-
Interests
Autoit<br />Autoit<br />Autoit<br />Runescape (sometimes)<br />Autoit<br />Autoit<br />Autoit<br />Autoit<br />Autoit<br />Autoit<br /><br /><br />And more Autoit<br />
SalazarCheats's Achievements

Prodigy (4/7)
0
Reputation
-
download with progressbar
SalazarCheats replied to MerkurAlex's topic in AutoIt General Help and Support
can you but this in a gui with abutton to start it/... -
help.. with download
SalazarCheats replied to SalazarCheats's topic in AutoIt General Help and Support
the install is not mine but the gui is... and the button is not showing pic... -
simulated clicks not working
SalazarCheats replied to ovideo's topic in AutoIt General Help and Support
wot game are u on about... cus if is world of warcraft... dont bother cheating unless you want to be baned by warden... -
controlsend & controlclick
SalazarCheats replied to LuSiFeR's topic in AutoIt General Help and Support
oh sorry then...# IDC if u cheat... Anyway Paulie you cant tell me neaver cheated on any game... so please be quite.... and gstep away from the pc until you have calmed down... (if you cant step away then dont bother helping) -
help.. with download
SalazarCheats replied to SalazarCheats's topic in AutoIt General Help and Support
IDK... i got if form koda... Anyway look at post 5 and you will see i edited my script... -
help.. with download
SalazarCheats replied to SalazarCheats's topic in AutoIt General Help and Support
look at post #5 i edited it... -
help.. with download
SalazarCheats replied to SalazarCheats's topic in AutoIt General Help and Support
yes i have tried... EDIT: Fixed to errors.... #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Zap Games -Downloader", 624, 187, 193, 115) GUISetBkColor(0xA6CAF0) $Pic1 = GUICtrlCreatePic("C:\Documents and Settings\Windows\Desktop\sqside.bmp", 400, 64, 68, 68, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) $Progress1 = GUICtrlCreateProgress(8, 152, 502, 17) $Label1 = GUICtrlCreateLabel("Welcome to Zap Games - Installer... This Downloader is set to Download Time- The Buring Destructor", 8, 16, 482, 17) $Label2 = GUICtrlCreateLabel("The download will start when you click Download now...", 8, 40, 269, 17) $Label3 = GUICtrlCreateLabel("The file size should be", 8, 64, 109, 17) $Button1 = GUICtrlCreateButton("(Not allowed)", 160, 88, 204, 54, $BS_BITMAP) GUICtrlSetImage(-1, "C:\Documents and Settings\Windows\Desktop\Dl Now.bmp", 0) TrayItemSetOnEvent(-1, "Dload") $Pic2 = GUICtrlCreatePic("C:\Documents and Settings\Windows\Desktop\side.bmp", 520, 0, 100, 180, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE EndSwitch Wend Func Dload() $DownloadURL = "http://www.autoitscript.com/autoit3/files/beta/autoit/autoit-v3.2.3.14-beta-setup.exe" $FileName = StringRight($DownloadURL,StringLen($DownloadURL) - StringInStr($DownloadURL,"/",0,-1)) $size = InetGetSize($DownloadURL) InetGet($DownloadURL,@scriptdir & "\" & $FileName, 1, 1) ProgressOn("Downloading " & $FileName,"") While @InetGetActive $prog = (100 * @InetGetBytesRead) / $size ProgressSet($prog, @InetGetBytesRead & "/" & $size & " bytes", "Downloading") Sleep(250) WEnd ProgressOff() Exit EndFunc ;>~~ Dload end Any more errors that u find... -
help.. with download
SalazarCheats replied to SalazarCheats's topic in AutoIt General Help and Support
can you help... -
controlsend & controlclick
SalazarCheats replied to LuSiFeR's topic in AutoIt General Help and Support
i play WOW so i do know wot im talking about... -
ok i need help with a script that downloads a file... Sorry but the game website int up yet so i used Autoit download... I get error for while and Wend... Also is there any way to change tyhe progress bar to being the one in the GUI alos it has download number/number under that can it have estimated time plz... I know ur not my slaves so if you could just help me or if your kind enough do it plz... here is code #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Zap Games -Downloader", 624, 187, 193, 115) GUISetBkColor(0xA6CAF0) $Pic1 = GUICtrlCreatePic("C:\Documents and Settings\Windows\Desktop\sqside.bmp", 400, 64, 68, 68, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) $Progress1 = GUICtrlCreateProgress(8, 152, 502, 17) $Label1 = GUICtrlCreateLabel("Welcome to Zap Games - Installer... This Downloader is set to Download Time- The Buring Destructor", 8, 16, 482, 17) $Label2 = GUICtrlCreateLabel("The download will start when you click Download now...", 8, 40, 269, 17) $Label3 = GUICtrlCreateLabel("The file size should be", 8, 64, 109, 17) $Button1 = GUICtrlCreateButton("(Not allowed)", 160, 88, 204, 54, $BS_BITMAP) GUICtrlSetImage(-1, "C:\Documents and Settings\Windows\Desktop\Dl Now.bmp", 0) TrayItemSetOnEvent(-1, "Dload") $Pic2 = GUICtrlCreatePic("C:\Documents and Settings\Windows\Desktop\side.bmp", 520, 0, 100, 180, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Wend Func Dload() $DownloadURL = "http://www.autoitscript.com/autoit3/files/beta/autoit/autoit-v3.2.3.14-beta-setup.exe" $FileName = StringRight($DownloadURL,StringLen($DownloadURL) - StringInStr($DownloadURL,"/",0,-1)) $size = InetGetSize($DownloadURL) InetGet($DownloadURL,@scriptdir & "\" & $FileName, 1, 1) ProgressOn("Downloading " & $FileName,"") While @InetGetActive $prog = (100 * @InetGetBytesRead) / $size ProgressSet($prog, @InetGetBytesRead & "/" & $size & " bytes", "Downloading") Sleep(250) WEnd ProgressOff() Exit EndSwitch EndFunc ;>~~ Dload end thanks in advance...
-
well dur... make it rune the same script under a diffrent name... then close the the orignal script... Then after a while open the orignal script and close the second one ECT...
-
controlsend & controlclick
SalazarCheats replied to LuSiFeR's topic in AutoIt General Help and Support
IF you are ALWAYS using the same script the will catch you... make it randomaly do other stuff .... For excample type random letters... Then delete them... -
i would of gave it him broke anyways... cus he needs to do some work him self...
-
Sorry i tryed.. but that game wont work on my pc... don't know why... But ill tell you how to do it... Search ECL in excample scripts... then download MY version somewere in the topic... Press F4 to store location... Then just use mouse move/click... on the right location.... Easy...
-
did u use updated one or his one... so mine or his