Jump to content

Intosia

Active Members
  • Posts

    29
  • Joined

  • Last visited

Intosia's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Im using a older version of the dll (not the unicode version). I want to run my program 'G:\Live\Vst\ABL2.exe'. I use: long x = AU3_Run("G:\Live\Vst\ABL2.exe", "", 1); x is always 0. I also tried setting the Working dir to 'G:\Live\Vst', and only 'ABL2.exe' in the run field. Any info? EDIT: Stupid me!! Have to use double slashes in the path.... long x = AU3_Run("G:\\Live\\Vst\\ABL2.exe", "", 1);
  2. I bet my life that it uses assembler for that You cant get that speed in high level language as AutoIt... You need C or C++ at most.
  3. I suggest taking a look at the program from Spiro: http://www.memoryhacking.com/ Great tool for mh. Maybe it can help you get some 'starting values', or offsets.
  4. Its the funtion "ExtractIconA" in shell32.dll. Try looking at DllCall functionin Autoit. Never dont this myself though...
  5. Ever heard of recursion? Not so wierd, when done right afcource.
  6. Whats wrong with FOR and WHILE? You can just put 1 line of code in the loop???
  7. Basicly he wants to deny a program from closing on a 'Processkill' request form Windows... The code he gave was just a example...
  8. Hi, Im trying to make a simple game server query thing for myself... I dont get any data back. What is wrong? The server Ip and Port are correct. The C string is '\xff\xff\xff\xffgetstatus'. What do i send? the chr(255), or ÿÿÿ version? $str = Chr(255)&Chr(255)&Chr(255)&Chr(255)&"getstatus" ;$str = "ÿÿÿÿgetstatus" ConsoleWrite($str) TCPStartup () $socket = UDPOpen("208.122.34.16", 28960) If @error <> 0 Then ConsoleWrite("Err") $status = UDPSend($socket, $str) ConsoleWrite($status) If $status = 0 then MsgBox(0, "ERROR", "Error while sending UDP message: " & @error) Exit EndIf While 1 $data = UDPRecv($socket, 50) If $data <> "" Then ConsoleWrite($data) EndIf WEnd
  9. A exe file isnt a COM object...
  10. Ow yes, i LOVE the help file. One of the finest ive seen in programming land
  11. Yeah, i just found it, stupid me >.< Thx
  12. Hi, Im trying to add a .wav file to my .exe file (resource). But i dont really understand the help file for Au3Wrapper.. Can someone give me a help? Tia
  13. Damn, why not run a simple PHP 'Notepad' script on some free webhost? Seems like a good sime solution for your problem?
  14. I asume it changes your LAN ip? And not your WAN (Internet) ip? Because that kinda impossible since it given to you by your ISP...
  15. Hi, Is it possible to a get a list of the open file handles that a given application has? Tia
×
×
  • Create New...