-
Posts
130 -
Joined
-
Last visited
Everything posted by aNewLyfe
-
Hi there. I'm trying to make a resumable winHttp upload. But stuck at reading a file within byte ranges. Tried line functions (filereadline, _filecountlines) but nothing. The file im trying to upload is a video (binary) file. I have to read byte ranges to upload my video partially. is there any udf like fileread($file, startingbytes, endingbytes) any help will be appreciated
-
OFC I've already warned him about this.
-
thanks for your great reply and sources yeah, now i see it's not all about z-order.
- 2 replies
-
- desktop
- background
-
(and 3 more)
Tagged with:
-
This works: #include "inet.au3" #include "string.au3" $baselink = "https://www.google.com.vn/search?output=search&sclient=psy-ab" $search = "SEARCH+TEXT" for $i=0 to 100 step 10 $currentlink = $baselink&"&q="&$search&"&start="&$i $source = _InetGetSource($currentlink) $eachlink = _StringBetween($source,'<a href="/url?q=','&sa=U') if isArray($eachlink) then for $z=0 to ubound($eachlink)-1 If StringInStr($eachlink[$z], "://") Then msgbox(0,"",$eachlink[$z]) EndIf next endif next change msgbox(0,"",$eachlink[$z]) to whatever you want to do with links...
-
be carefull, your ip could be banned. google have a limit of queries per minute. happened to me before btw, if you just want the links why dont you try: $baselink = "https://www.google.com.vn/?gws_rd=ssl#" $search = "SEARCH+TEXT" for $i=0 to 100 step 10 $currentlink = $baselink&"q="&$search&"&start="&$i $source = _InetGetSource($currentlink) $eachlink = _StringBetween($source,'<a href="/url?q=','&sa=U') if isArray($eachlink) then for $z=0 to ubound($eachlink)-1 msgbox(0,"",$eachlink[$z]); next endif next
-
I'm trying to make a desktop wallpaper application with video support. But stuck at z-order. Any suggestions? How to put autoit window before desktop listview? I'm currently attaching window to the WorkerW. also tried the $HWND_BOTTOM const of _WinAPI_SetWindowPos but when i apply this, win goes invisible. no luck yet any help will be appreciated
- 2 replies
-
- desktop
- background
-
(and 3 more)
Tagged with:
-
File Protection w Header Corruption
aNewLyfe replied to aNewLyfe's topic in AutoIt General Help and Support
lol, this will be used for bussiness, rly Btw, i dont store porn on my pc anymore since click+watchs and never had a 3gb one of them Ty for info BrewManNH, casual is enough for me. I will look in to this. Allready did what i want with "writing xxxxxx at the starting of a file" but i think itsnt the right method on big files. -
File Protection w Header Corruption
aNewLyfe replied to aNewLyfe's topic in AutoIt General Help and Support
ty but, we cant call that as an automation if you mean winzip or winrar btw -
I want to make a file protection tool to protect my super secret files n i need some suggestion, how can i do this ? Maybe changing file header data ? Maybe adding some "asdhasuhzxcuhsaud" text on header or somewhere in file ? Also, i have to put some pass in it too for recovery. Btw, some of my files are big, like 3-5Gbs. I need the fast method. Please, if u have some experimentation in this, gimme suggestions. Any help will be appreciated, ty all .
-
This may give an idea: $lastread = fileread($logfile) ;use this outside of loop 1 time. While 1 ;while doin action 1 $newread = fileread($logfile) if($newread<>$lastread)then ;file has changed, do whatever you want now. $lastread = $newread ;dont forget this before u leave endif Wend if you want to know the changed lines, i dont know, just think about it a bit, i bet u can solve it.
-
Could someone help with this easy script please
aNewLyfe replied to Kimo's topic in AutoIt General Help and Support
ahh best self-preservation i ve ever seen -
Changing decrypt php to autoit
aNewLyfe replied to LordBoling's topic in AutoIt General Help and Support
you may simply InetGet(site.com/cc_decrypt.php?key=xxx&session=uniquecodefortempbypass) but it wont be secure Btw, good luck with it, im trying to install that mcrypt plugin to my server atm, it sucks. -
i.. guess.... explorer will not let you do this cause of security reasons but, not sure.
-
sweeeet, awesomo =D --- btw, multi client means game hacking If they made it _Singleton(), you have to use it once. Im not against game hacking but plz, dont cover yourself. try hex editors, not autoit .
-
why dont u simply create your own messagebox ? with another gui, with your options and buttons, it could completely look like a system modal msgbox
-
Autoit has a great help file #include <Array.au3> ;=============================================================================== ; Example 1 (using a 1D array) ;=============================================================================== Local $avArray[10] = [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] _ArrayDisplay($avArray, "$avArray BEFORE _ArraySort()" ) _ArraySort($avArray) _ArrayDisplay($avArray, "$avArray AFTER _ArraySort() ascending" ) _ArraySort($avArray, 1) _ArrayDisplay($avArray, "$avArray AFTER _ArraySort() descending" ) _ArraySort($avArray, 0, 3, 6) _ArrayDisplay($avArray, "$avArray AFTER _ArraySort() ascending from index 3 to 6" ) ;=============================================================================== ; Example 2 (using a 2D array) ;=============================================================================== Local $avArray[5][3] = [ _ [5, 20, 8], _ [4, 32, 7], _ [3, 16, 9], _ [2, 35, 0], _ [1, 19, 6]] _ArrayDisplay($avArray, "$avArray BEFORE _ArraySort()" ) _ArraySort($avArray, 0, 0, 0, 0) _ArrayDisplay($avArray, "$avArray AFTER _ArraySort() ascending column 0" ) _ArraySort($avArray, 0, 0, 0, 1) _ArrayDisplay($avArray, "$avArray AFTER _ArraySort() ascending column 1" ) _ArraySort($avArray, 0, 0, 0, 2) _ArrayDisplay($avArray, "$avArray AFTER _ArraySort() ascending column 2" )
-
Any hacking preventing app around ? Firstly, u cant do this if your game has hackshield, xtrap or something that guards game's exe. Pixel method is the easy way. But game must be active window while botting. I allways prefer memory method, u can do everything with memory and game could stay at the background or minimized.
-
Aye, _FileReadToArray then: StringLeft($1, 4) = YEAR, $day = StringTrimLeft($1, 4) $day = StringTrimRight($day, 6) u can go with this method - OR - Simply put - between your 1= values. Like: 2011-22-11-33-44, $splitted = StringSplit($1, "-", 1) $year = $splitted[0]; or 1 ? $day = $splitted[1] $hour = $splitted[x]...
-
What do you mean with selected?
-
Using the computer while autoit script is running?
aNewLyfe replied to Phasebook's topic in AutoIt General Help and Support
While autoit moving your mouse around, u cant logoff or do something different. I bet ControlMove cant do that too. Why dont u using embeded ie or something like FireFox api instead of this? -
"Progman" should be deeper than icons ?
-
Read Tooltip without move mouse over it
aNewLyfe replied to FaridAgl's topic in AutoIt General Help and Support
U could try Control() commands, it may success maybe that tooltip is a hidden window Or if its a game reading the value from its memory is your second option