Jump to content

Hok

Active Members
  • Posts

    52
  • Joined

  • Last visited

Hok's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Thanks, but it was actually just a problem with the window name...
  2. Sorry but a new problem just came up >.< While 1 HotKeySet("!x", Click()) WEnd I replaced that with what I previously had and I got an error: Invalid Function name. But, if I have it like I have before, nothing happens when I press Alt+X
  3. So here is my script... $Color = 0x00000000 $MousePos = MouseGetPos() $ColorVariation = 20 $Left = $MousePos[0]-[50] $Top = $MousePos[1]+[50] $Right = $MousePos[0]+[50] $Bottom = $MousePos[1]-[50] Func Click() If WinActive ( "[Conquer2.0]", "" ) then $ShadowCoords = PixelSearch ($Left, $Top, $Right, $Bottom, $Color, $ColorVariation, 2) If @error=1 Then MsgBox(16, "Aimbot ERROR", "No black pixel found within 100 pixels of the mouse") Else MouseClick("Right", $ShadowCoords[0], $ShadowCoords[1]) EndIf EndIf EndFunc It has a problem with the part with: $Left = $MousePos[0]-[50] $Top = $MousePos[1]+[50] $Right = $MousePos[0]+[50] $Bottom = $MousePos[1]-[50] I get a syntax error for every line...
  4. I think you have a similar question to mine... http://www.autoitscript.com/forum/index.php?showtopic=93469
  5. Hey, I play a MMORPG game called Conquer 2.0. I am trying to figure out how to move the character by using the memory, or by not using mouseclicks. On a forum, I got an answer that said this... Thats basicly it, create a thread, inject it and on a button click or whatever make it jump/walk to the coordinate u want.Once you got that figured out you can basicly make any memory based bot. So read up on dll injection and if questions post in this thread when i have the time i will help and if not someone else will BTW to understand the jump/walk function better i suggest inline patch first just 'hardcode' patch for example make pathfind button execute a jump to a coordinate (which u ofcourse have to set ) experiment a bit and then when you know how the function exactly works you 'mimic' the function in a dll, inject it and execute the function at will. What exactly is a DLL Injection and how do I go about doing it in AutoIt? Thanks, Hok
  6. Thanks... but I kinda wanted to develop it myself... - Hok
  7. Hey, I'm trying to make a program that reads lines in a program to make a macro. So for example - a text file would contain... [RandomWait] [5] [10] [MouseClick] [Right] [30] [60] The program would output; a random wait from 5 to ten seconds, then a mouseclick. However, I didn't finish and i think I am approaching it wrong... here is my source. #Include <File.au3> $FileName = InputBox("File Name", "Input the file name of the script:", "Input Script Name") FileOpen($FileName, 0) $NumberLines = _FileCountLines($FileName) $NumberLines = $NumberLines+1 While $NumberLines>0 FileReadLine($FileName, $NumberLines = $Numberlines-1) WEnd - Hok
  8. And yet another reason why I hate freaking hackers. Jeez. I see your point; though it'd still be nice to get some help. Also, if you could tell me how you figured it out, that'd be nice too. Or would that go against the whole thing - Helping people learn about this subject = bad?
  9. By all the sarcastic remarks, does that mean you are not gonna tell me? =/
  10. I lol'd at that. Mostly just because I'm curious (Yeah I know, a lame answer.), but seriously it's true. I don't understand DDL or Keyboard hooks and I'm hoping this will help my understanding of both. And with all due respect, you are the one that gave many people kits to create these weapons.
  11. Hey, I was looking around the forums and I was wondering how I could create a keyboard hook in my AutoIt script using Larry's DLL. If someone could explain it to me that'd be great. - Hok
  12. Tyvm You and Whale helped me tons.
  13. "Yet another question though... Right now I have it importing a Maximum of 12 ips... How would I make it able to inport any number, without writing them all out as different variables... (Even if that was possible)" So instead of importing specific lines, it imported the whole thing? I have no idea how to make this possible... Maybe through some kind of loop...?
  14. Look at my edited post please; lol, we must've been writing at the same time
×
×
  • Create New...