Jump to content

Darknightx37

Active Members
  • Posts

    20
  • Joined

  • Last visited

Everything posted by Darknightx37

  1. Hay there i try to create a gui and delete them on my secound monitore when i was in a fullscreen application but i noticed that i got tabed out of the application every time i created a new gui how to fix that i get tabed out i already tryed with winsetontop("application", "", 1) thx --> @SW_SHOWNOACTIVATE sry im stupid
  2. i already got it myself
  3. Hay there i try to download a folder from a ftp server $hDownload = InetGet("http://sampleURL/myfolder/", @ScriptDir& "\myfolder", 1, 1) Do Sleep(250) Until InetGetInfo($hDownload, $INET_DOWNLOADCOMPLETE) http://prntscr.com/6ruz70 this is what happens.. is it possible to download the folder with all contents inside?
  4. ouh ok thats a pitty but thx for your fast replys
  5. FileWrite("config.xdat", "This is a test") i tryied this but i can still read it with notpad++ any ideas to avoid this ?
  6. Thx for the answere "NTFS Permissions" what is that ?
  7. thx for the answere but that is not what i was searching for i thought about a .txt that cant get opened so that nobody can read or a new datatype like "config.xyz" that only my script can read
  8. hay there i try to lock a .txt file so that nobody can read or edit it (I dont want to crypt the text inside). so that my script can store things in it but nobody can read or edit it is that possible? sry for my bad english gretz usbstick
  9. this is pritty instable cause the server is often not avalebil can you maybe give me an example foranother website like this where i can get the time from a url?
  10. Hay ther i try to get the current date from the internet for a login system. for now im using @mon @year ... to get current date but you could easily crack this system. it would be nice if i could get the current date from a website or something to avoid this problem if anyone has an idee pls tell me gretz usbstick sry for my bad english
  11. Hallo ich habe mich gefragt ob es möglich ist in Autoit eine soundfile abzuspielen(ja das ist möglich weis ich auch wohl ^^) und dabei dan visual zb mit gdi+ die höhen tiefen und mitten darzustellen wie mann das vom windows media player kennt ? danke für die hilfe
  12. this doesnt work for me but i already got a soloution i show you: start() func start() while 1 if _ispressed(04) then send($message1) send("{ENTER}") if not _ispressed(04) then start() endif send($message2) send("{ENTER}") if not _ispressed(04) then start() endif send($message3) send("{ENTER}") if not _ispressed(04) then start() endif start() endif wend endfunc this works perfect
  13. it looks like this : send($message1) send("{ENTER}") send($message2) send("{ENTER}") send($message3) send("{ENTER}") send($message4) ;all will be different stuff like rules and informations about admins send("{ENTER}") and if i will take my finger off from the mouse3 bttn (mouse3 up) it should stop writing thes messages
  14. Hay guys i Made a little bot that writes the "message of the day" for me in my server and restarts the server evry 4 hours. now i have a problem i made it like this(example) : while 1 if _ispressed(04) then ;mouse3 send("t") sleep(20) send($Messageoftheday) send("{ENTER}") endif sleep(5) wend know if i let the mouse3 up it should instantly stop the writing like this: func stopp() send("{ESC}") ;will close the chat endfunc thanks for your help
  15. if i restart the .exe the pointers have changed what now ? -.-
  16. okay guys i got it myself closed
  17. Hay guys maybe someone of you can help me if i have two colours that are saved in variables how can i use them in an if clauses with a tolerance on them like this: $pos = MouseGetPos() Local $iColor = PixelGetColor($pos[0] -1, $pos[1] -1) $maincolour = $iColor while 1 Local $iColor2 = PixelGetColor($pos[0] -1, $pos[1] -1) $checkcolour = $iColor2 if $checkcolour <> $maincolour Then ;<------- HERE IT CHECKS IF THE COLOURS MISSMATCH BUT I WONT A LITTLE TOLERANCE ON IT msgbox(0, "Warning!", "colours missmatches.") TogglePause() EndIf ToolTip("Switched colour = " & $checkcolour & " Main colour = " & $maincolour,0,0) WEnd I already tried While $checksum = PixelChecksum($pos[0] -1, $pos[1] -1,$pos[0] -2, $pos[1] -2,) is still not working PLS HELP ME sorry for my bad english. thank you for all your help :-)
  18. i need help im going to wirte a telekill hack and i´m scripting it with autoit but now i need help i know what i must do but i dont know how to memory read and memory write with pointers <snip> Pls Help me
×
×
  • Create New...