Jump to content

daxle

Active Members
  • Posts

    23
  • Joined

  • Last visited

Recent Profile Visitors

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

daxle's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. There is actually a pretty good equivalent for linux! It even has many of the same commands, so it's pretty much the same except that it's java based, so everything has a semicolon at the end It has pretty similar commands like pixelSearch(); msgBox(); mouseClick(); mouseMove(); sleep(); send(); etc. It's called javAuto, and you can find it here.
  2. Hey everyone, I was wondering if there was a way to use ConsoleWrite() to execute a command? I am looking to execute a command from an AutoIt program (a console app in this case), within the same shell as said AutoIT program was launched. ConsoleWrite() seemed to be the closest command available, as it writes directly to the StdOut stream. Perhaps there is an other command that I am ignorant of however, such as a way to use Run() to write to the same stream as ConsoleWrite()? As always, any help is much appreciated!
  3. I was actually also looking for a way to do this recently, I've been getting tired of using the RunAs command to run things as admin in the windows command prompt so I was thinking of making a little application that could be called from the command line and would perform the specified command as administrator, and I wanted it to do this so that it would execute in the same shell. I'm sure there are tons of other uses for this too. Now I'm intrigued Any ideas guys?
  4. Thanks guys, both work fine!
  5. Hi there everyone, I have a text file that looks something like the following: Administrator Guest Matt jaes james jas jasdfs jasds js Matthew pjaasddasdfs pjaasdds pjads pjdfs Notice the odd formatting; there are not always a consistant amount of spaces between terms, I'm looking for a way to break up this text file into the individual terms (in this case user accounts), and not include the spaces. Any ideas? Thanks for any advice! Matt
  6. Hey all. I am trying to make a GUI that edits an excel file, so if anybody knows some sort of edit function, or if there is both a write to and a read from command, thank you.
  7. I am using this code to try and autofight deicide online <CODE> #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.0.0 Author: Daxle # # # # # Script Function: Template AutoIt script. CODE#ce ---------------------------------------------------------------------------- ;Deicide Online Hack HotKeySet("{ESC}", "Terminate") Sleep(20000) $a = 5 While $a = 5 $monster = PixelSearch(0,0,1023,767,0xFFDFF38) if IsArray ($monster) then MouseClick("right", $monster[0], $monster[1], 2) sleep (5000) $gold = PixelSearch(0,0,1023,767,0x18160C) if IsArray ($gold) then MouseClick("right", $gold[0], $gold[1], 2) sleep (5000); EndIf Endif WEnd Func Terminate() Exit 0 EndFunc </CODE> and it doesnt seem to be searching within deicide online for a pixel, because as soon as i exit deicide the pixelsearch will click something with the same color on my desktop. Any ideas?
  8. Yeah, i got it right from the window thing, should i try abbreviating or do you have any other suggestions?
  9. Is there any way for me to have it search for every shade of a color, so that if the angle or lighting changes it will still click it?
  10. Thank you, you have helped me to complete it(yes, i have finally done it) and now it works perfectly, thankyou
  11. thanks for the help all, but it didnt work
  12. Thanks everyone, its working great!!
  13. Sleep(3000) MsgBox(0,"Starting", "We are ready to start!") $s=1 While $s=1 $reaction = PixelSearch("413,551", "621,477", "849,559", "656,656", 0x00CC33) MouseClick("left", $reaction[0], $reaction[1]) WEnd What im trying to do is loop it so that it constantly searches for the pixels, im having major trouble with this
  14. Sleep(3000) MsgBox(0,"Starting", "We are ready to start!") $s=1 While $s=1 $reaction = PixelSearch("413,551", "621,477", "849,559", "656,656", 0x00CC33) MouseClick("left", $reaction[0], $reaction[1]) WEnd I have this code, but it will not loop!!! please help me
×
×
  • Create New...