Jump to content

Debit

Members
  • Posts

    15
  • Joined

  • Last visited

Everything posted by Debit

  1. This doesn't work. It wont let me close connections.. just as Cports will not.
  2. Curr ports does this but isn't light enough and cant close out the ip's with a simple push of a button =P
  3. I died a little inside on that one. Sorry man, no idea.
  4. I am 100% clueless on how to do this. If someone can help me out that would be G! I need a code that does the following. ________________________________ tracks all connections to my TCP. Allows me to close off the connection. has a gui that shows the IP in the order that they come in. this would help so much.
  5. I enjoy the fact that you at the very least used some thought into your post..But if you had looked into my previous thread 90% of what you just typed up would have not even have come to your mind. But I digress. AutoIt Is not what I'm looking for.
  6. Tell you what. I give up because I looked into it a little more and autoit isn't going to work for combat arms.. Winactive does nothing for it. Not sure why, but it doesn't. I had a friend help me out, got it working in WoW with the same script but Combat arms will not allow Autoit to run at the same time. Even with a Hackshield bypass.
  7. If you cannot help me with This very question below.. DO NOT POST. I'm sick of hearing crap. Don't spam my thread. Make it at least a little helpful. Currently I need a script the does the following. __________________________________________________________________ 1. When ran, it doesn't automatically start, its paused. | 2. Will Alt+Tab into "CombatArms" | 3. Allow me to pause and unpause the script in-game. | 4. When I press a key it unpauses. | 5. When Unpaused it finds the closest "$COLOR = 0xFF0000" and locks onto it. | 6. I will then do the clicking and unpause the script where it shall let loose. | ---------------------------------------------------------------------------------------------- I currently have this script. HotKeySet("{PAUSE}", "TogglePause") HotKeySet("{ESC}", "Terminate") Global $Paused Global $COLOR = 0xFF0000 Global $SHADES = 2 While 1 $Coord = PixelSearch(0, 0, @DesktopWidth, @DesktopHeight, $COLOR, $SHADES) Sleep( 100 ) If Not @error Then MouseClick("Left", $Coord[0], $Coord[1], 1, 1) EndIf WEnd Func TogglePause() $Paused = Not $Paused While $Paused Sleep(100) WEnd EndFunc;==>TogglePause Func Terminate() Exit 0 EndFunc;==>Terminate A few problems! _____________ 1. It starts unpaused. 2. It clicks when it shouldn't click at all. 3. It doesn't lock on, there could be several "$COLOR = 0xFF0000" around the screen, I need it to pick the closest one and stick to it. 4. It does nothing in the application "CombatArms". 5. I have no idea what I'm doing.
  8. Not exactly sure what you mean. Try the Autoit Window Information to see the directory of a file.
  9. One question.where are you going to release this?
  10. What about a pause hotkey? ; Press Esc to terminate script, Pause/Break to "pause" Global $Paused, $counter = 0 HotKeySet("{F1}", "TogglePause");This will Toggle the pause on and off starting and stopping the script. HotKeySet("{ESC}", "Terminate") HotKeySet("+!d", "ShowMessage");Shift-Alt-d ;;;; Body of program would go here;;;; While 1 $counter +=1 ToolTip('Script is "Running"',0,0, $counter, 1) Sleep(700) WEnd ;;;;;;;; Func TogglePause() $Paused = NOT $Paused While $Paused sleep(100) ToolTip('Script is "Paused"',0,0, $counter, 1) WEnd ToolTip("") EndFunc Func Terminate() Exit 0 EndFunc Func ShowMessage() MsgBox(4096,"","Your welcome!") EndFunc I hope this helps.
  11. Yes but if your not connected to Blizzards server then your not connected to their warden.Also it wouldn't matter because unless your using your same account information and blizzard is key logging you.. Then who cares, They have no account to ban. In conclusion. No.
  12. sorry I don't have nearly enough Experience yet.
  13. To much crap in this thread that shouldn't be there.. So I am making a new one.
×
×
  • Create New...