
gosu
Active Members-
Posts
107 -
Joined
-
Last visited
Everything posted by gosu
-
I´m working on a news post script for my homepage at the moment. So I type something into the box and press 'Send'. Then it should call a php script on my homepage which inserts the data into a mysql database. I thought of 'insert.php?name=bla&message=hi%20world!'. It´s annoying to see the Browser pop up. Is there a way to call the browser hidden? When I start it with @SW_HIDE, nothing happens.
-
Subscript used with non-Array variable
gosu replied to gosu's topic in AutoIt General Help and Support
Ah, thank you very much. Didn´t know it only returns an array on sucess. -
This is what I get when I run this code: $asdf = PixelSearch(290,231,861,699,16738603) $x = $asdf[0] $y = $asdf[1] MouseMove($x,$y,0) MouseDown("left") MouseMove(180, 750, 0) MouseUp("left") In the help file it says, PixelSearch returns an array. I am confused...
-
Setting the transparency of the desktop icons
gosu replied to gosu's topic in AutoIt Example Scripts
What OS are you using? It works fine on Windows XP Prof. SP2. -
I was messing around with WinSetTrans and I was really suprised when I noticed there is a possibitly to change the transparency of the icons of the desktop: WinSetTrans("Program Manager", "", 125) For XP/2000. A bit buggy... Enjoy Edit: There is also a way to completly hide the icons. WinSetState("Program Manager", "", @SW_HIDE) Edit 2: Lol! There is a way to lock the desktop! WinSetState("Program Manager", "", @SW_DISABLE) Might be useful for teacher tools / trojans
-
wow, this is strange. well, thanks! i was just wondering what was wrong about my code
-
Can you tell me what´s wrong with this code? I want the cursor to hide and show up again. It just happens nothing
-
Ah, thanks. works real faster
-
global $pixeldraw $pixeldraw = DLLCall("user32.dll","long","GetDC","hwnd",0) Func PixelDraw($xcoord, $ycoord, $color) DllCall("gdi32","long","SetPixel", "long", $pixeldraw[0], "long", $xcoord, "long", $ycoord, "long", $color) If @error = 1 Then Return 0 Else Return 1 EndIf EndFunc Func DrawRectangle($xstart, $ystart, $xend, $yend, $color) For $x = $xstart to $xend For $y = $ystart to $yend PixelDraw($x, $y, $color) Next Next EndFunc ; Example of how to draw a white rectangle DrawRectangle(600, 300, 750, 400, 0xFFFFFF) Thanks to ezzetabi for the API-Guide. I think this function may be pretty useful. (man, it took me long to see, that i have to call 2 dlls...) Althought, it´s really slow. Is there a way to speed it up?
-
Returns the number of ms that have elapsed since
gosu replied to ezzetabi's topic in AutoIt Example Scripts
Thank you a lot! I hope I can create my own real DllCalls now -
it´s very easy. $file = FileOpen("keylog.txt", 1) If $file = -1 Then Exit EndIf While 1 ;for the a If _IsPressed(41) Then _LogKeyPress("a") EndIf ; repeat that for every key... Sleep(50); You may need to change that value (depending on your computer´s speed) WEnd Func _LogKeyPress($what2log) FileWriteLine($file, "[ " &@MDAY & ". " &@MON & ". " &@YEAR & " " &@HOUR & ":" &@MIN & ":" &@SEC & " ] " & "Pressed Button: " & $what2log) EndFunc FileClose($file)Just a pretty much work, but it´s working perfectly.
-
Returns the number of ms that have elapsed since
gosu replied to ezzetabi's topic in AutoIt Example Scripts
Great script, thanks! I wonder how you get all these dll-functions of windows... Is there an overview somewhere? -
Your right. At the moment, it doesn only fire if you aim at an emeny. It´s still better than shooting normal, because if you hold the mouse button down a while, the shots are not precise any more. And I have no idea how to "see" the emeny with auto it, because (nearly) every emeny has a different colour. If you have an idea, tell me
-
ye, it should be "aber mein deutsch ist nicht sehr gut." which means "but my german isn´t very good".
-
I tried that, but ICQ2go is an active x element and auto it doesn´t seem to detect it
-
pretty good for some basics btw: check out my icq2go script
-
Hehe, we say still "cool" instead of "kühl" Do you learn german in school? You are pretty good
-
Opt ("WinTitleMatchMode", 2) $icqnummer = InputBox("Icq #", "Enter ICQ UIN:", "", "") If @error = 1 Then Exit $passwort = InputBox("Password", "Enter password:", "", "*") If @error = 1 Then Exit RunWait(@ComSpec & " /c start iexplore.exe http://go.icq.com", '', @SW_HIDE) WinWait("Your Web-based ICQ!") WinWait("ICQ Inc") ; You may need to change the next value! Sleep(5000) Send($icqnummer) Send("{TAB}") Sleep(300) Send($passwort) Sleep(300) Send("{TAB 2}") Sleep(300) Send("{SPACE}") WinClose("Your Web-based ICQ!") This asks you for your icq and your password. Then it logs you into icq! It´s pretty useful on guest computers like school or internet café! Enjoy!
-
Thanks!Yes, I´m german and not very good at english. So some variables are in german
-
This script lets you enter a number of minutes. You will see a progressbar then and see how much time is left until the script shut downs your computer. Enjoy!
-
And it´s the first aimbot for Star Wars Battlefront on the whole net! @ezzetabi: cool. And much thanks for the _IsPressed function! I really needed it!
-
$paused = 1 $sleepzeit = 101 $width = "" $height = "" $width = InputBox("Star Wars Battlefront resultion", "Enter width of screen", "", " M") If @Error = 1 Then Exit $height = InputBox("Star Wars Battlefront resultion", "Enter height of screen", "", " M") If @Error = 1 Then Exit While 1 If $paused = 0 Then $pixelfarbe = PixelGetColor ($width/2, $height/2) If $pixelfarbe = 14622752 Then MouseClick("left") EndIf ElseIf $paused = 1 Then Sleep(1000) EndIf If _IsPressed("55") Then If $paused = 1 Then $paused = 0 ElseIf $paused = 0 Then $paused = 1 EndIf EndIf If $paused = 0 Then Sleep($sleepzeit) ElseIf $paused = 1 Then Sleep(1000) EndIf If _IsPressed("6B") Then $sleepzeit = $sleepzeit + 10 EndIf If _IsPressed("6D") Then If $sleepzeit - 10 <> 0 Then $sleepzeit = $sleepzeit - 10 EndIf EndIf WEnd Func _IsPressed($hexKey) Local $aR, $bRv;$hexKey $hexKey = '0x' & $hexKey $aR = DllCall("user32", "int", "GetAsyncKeyState", "int", $hexKey) If $aR[0] <> 0 Then $bRv = 1 Else $bRv = 0 EndIf Return $bRv EndFunc im proud to present you the first star wars battlefront aimbot ever! thanks to ezzetabi for the _IsPressed function. dont flame me please for bad code, its one of my first scripts. "u" to start or stop the script (script starts stopped), + and - on numpad to change scanning-time. works only with crossairs which have a dot in the middle. you need to be in the first-person-view. have fun, freaking cheaters
-
wonderful! thanks! i finally made a keylogger
-
ooooooooooooooh silly me thanks found it
-
hey, I´d like to have a way to find out if a substring is in a string. Example: $asdf ="blablablablalbabla[iMPORTANT]blablablblalblablalba" And I want to cut the [iMPORTANT] out and store it in another string. How?