Jump to content

B3TA_SCR1PT3R

Active Members
  • Posts

    211
  • Joined

  • Last visited

Everything posted by B3TA_SCR1PT3R

  1. This is the stupidest piece of crap Ive ever seen. 1) Its stupid 2) Someone could just delete the tmp 3) Not everyone has a C: Drive 4) Its stupid 5) Its stupid 6) Its stupid 7) Its stupid 8) Wastes CPU cycles 9) Its SO FUCKING STUPID
  2. hey dumbshit you cant just start distributing other peoples programs, i.e. CCleaner you fucking moron your program sucks your site sucks, and im pretty sure you suck as well. Go learn a real language and then make a REAL program.
  3. sure, its called the helpfile! _GuiCtrlListViewGetItemTextArray learn to research
  4. what n the hell... http://quadryders.com/phpcc/index.php ?
  5. other than that I like it! 9.99/10
  6. Now recode the entire thing in C#
  7. I'm not sure about that, but you could always change the default action of a .reg file to open in notepad. But that would only protect against .reg files not if the program explicitly wrote to the registry.
  8. Haha, probly another 10 year old trying to make an 'aimbot' for some disney game. He's probly fat too, and to lazy to click the 'Search' button.
  9. HotKeySet("{F6}","sendchat") Func sendchat() Send("/w PlayerName") ;;^assumes the chat box is already open EndFunc no need to involve the clipboard
  10. No. Its not. D:\Documents and Settings\[username]\Start Menu\Programs\Startup Use this macro to find it: @StartupDir Example: MsgBox(0,'',@StartupDir)
  11. //edit: yeah I'm gona need you to go ahead and post some of your code, to prove its not a virus, or anything malicious..before we help you.
  12. #include <Process.au3> #include <GUIConstants.au3> $search = _RunDOS("dir /b >> Files.log") ; == GUI generated with Koda == $Form1 = GUICreate("AForm1", 516, 574, 192, 125) $List1 = GUICtrlCreateList("", 48, 16, 401, 500, -1, $WS_EX_CLIENTEDGE) $Button1 = GUICtrlCreateButton("refresh", 120, 536, 273, 25) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $button1 $file = FileOpen("Files.log", 0) While 1 $line = FileReadLine($file) If @error = -1 Then ExitLoop GUICtrlSetData($list1,$line) Wend EndSelect WEnd Exit ..your just listing the files right? //edit: Are you specifically needing to use the FileFind functions? because this works just as good with -2% hassle
  13. I wanted to smash my face in the monitor on the second level.
  14. @dandymcgee you need the latest beta version of autoit. @OP nice job!
  15. Write to a file? Easy but it would probably use alot of cpu, writing back and forth.
  16. $url = 'http://www.autoitscript.com/forum/index.php?showtopic=29727' _RunDOS('start '&$url) ..that starts the webpage in the default browser, so unless you've specifically changed the default to Firefox (or some other browser) it should open in IE.
  17. very nice just created Drive 'T'
  18. coulda saved alot of time by smackin' your hands on the keyboard
  19. very nice! 10/10 ..maybe add some skins? Also could you hide it from the taskbar? For full time use that can get kind of annoying/take up space.
  20. CDTray("E:", "open") you know in the help file theres a tab called "Search"
  21. 1) Not everyones root directory is 'C', mine infact is 'E' 2) dir %HOMEDRIVE% /s /b | find /I ".au3"
  22. how would i set an icon to my exe thats inside 'shell32.dll', but i dont have a gui its only tray but i want to change the tray icon and set the exe icon as well. thx
  23. just load the contents of exe[2] into the bottom of exe[1] and just switch gui's if your using em' , or make all of exe[2] a big function in exe[1]
  24. thx ill try that once i figure out how to fix this: i have: dim $list[9] .... .... .... For $xi = 1 To _FileCountLines("C:\List.txt") $list[$xi] = guictrlcreatemenuitem("List123") redim $list[$xi] Next
×
×
  • Create New...