Jump to content

Warmonger

Active Members
  • Posts

    54
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Warmonger's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. I'm thinking you are completely misled, and will have some serious explaining to do to Jon once he reads my pm. Anyways thanks for the free bumps.
  2. I built a launcher that uses ShellExecute() to load a hidden web page, with the users default browser. The problem im having is since it doesn't return the process handle or nothing. We end up with a process idling in the background. Is there any way to return a handle and close this process that would work on a global scale across all web browsers?
  3. You keep failing over and over again. This is NOT for automating a game. So it breaks none of the rules.
  4. I'm not discussing gaming, am i? No. I would suggest check yourself real quick.
  5. Would work. But wont meet my requirements. This program will be used by 1,000's of people daily for a official game, with all different kinds of browsers, so it needs to be more robust. ;~ Load Web Page $Shell = ObjCreate('Shell.Application') $Shell.ShellExecute('http://www.google.com', '', '', '', @SW_HIDE) And then doing. $Shell.Quit And $Shell = 0 But no success, process still exists maybe im doing something wrong?
  6. I built a launcher that uses ShellExecute() to load a hidden web page, with the users default browser. The problem im having is since it doesn't return the process handle or nothing. We end up with a process idling in the background. Is there any way to return a handle and close this process that would work on a global scale across all web browsers?
  7. WinSetTitle('[REGEXPTITLE:DSM;CLASS:ConsoleWindowClass]', '', 'Manager (Version ' & $nVersion & ')') But that still isn't good enough for me. It can be bypassed by renaming the executable.
  8. True, i've been very busy in Visual Studio so not much time to code. I just want to make sure a previous script I released was fine. Thanks.
  9. No one said anything about at the same time, autoit is not multi-threaded.
  10. Questions simple. If I register two AdlibRegister's in my script. Lets say the first one for 5 minutes and the second one for 10 minutes. When the fist AdlibRegister runs its second run it will be at the same time as the 10 minute AdlibRegister. Now my question is, will it only run the first AdlibRegister to trigger, or will it run them back-to-back until they both are done?
  11. Here's a update to this UDF (Shaggi I hope you don't mind just minor things). You can now use all 255 color combinations in a console, however you cannot Obfuscate your source no longer (bug). Removed: $FOREGROUND_X $BACKGROUND_X Added: $COLOR_X (1-255) #include <Console.au3> Dim $COLOR_ For $i = 1 to 255 Cout($i & ' ', $COLOR_ & $i) Sleep(10) Next While 1 = 1 Sleep(1000) WEndConsole.au3
  12. Look at WinWaitActive in the help file.
  13. An example of using AutoIt's binary mode for byte patching. This was a random boredom fiddle-diddle so don't expect it to be coded "properly". Source Code Code removed because it demonstrates patching a game bot.
  14. Very nice, exactly what im looking for. Would be nice to see a UDF for this.
  15. You can't compile win32 binarys to run on Linux. And thanks for info on WINE support.
×
×
  • Create New...