Jump to content

auratus

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by auratus

  1. There really isn't much code to post. Just MouseMove(). This seems to work a little better than just MouseMove(), however, it moves the mouse relative to it's current position. After a little tinkering, I might get this to work, but I am still open to other suggestions. Also, can someone please point me towards more info on $MOUSEEVENTF_MOVE, such as the syntax for mouse clicks?
  2. I am trying to make a bot for Morrowind to acomplish some repetative tasks that I don't feel like doing over and over myself. I used AU3Info to get the coordinates where I needed mouse clicks, but when I run the program, the mouse cursor shoots off the screen. I even tried MouseMove(1,10) and it still went off the screen. Any advice on how to get this to work? Note that I have tried this in both windowed mode and full screen with the same results.
  3. Could someone please help me with why this is not working? I am using the Beta version of AutoIT. $dbname = "auratusDB.mdb" $tblname = "cards" $fldname = "price" $query = "SELECT * FROM " & $tblname & " WHERE " & $fldname & " = " & $userName $rows = _RecordSearch($dbname, $query) The error, "The requested action with this object has failed". comes from the _RecordSearch function on the line that reads $adoRs.Open($_query, $adoCon) Thanks for any help you can provide. EDIT: Oh, well, I finally figured it out through trial and error. Here is my solution $query = "SELECT * FROM " & $s_tblname & " WHERE " & $fldname1 & " = '" & $userName & "'"
×
×
  • Create New...