Jump to content

Mr_Was_geht_sie_das_an

Members
  • Posts

    13
  • Joined

  • Last visited

Recent Profile Visitors

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

Mr_Was_geht_sie_das_an's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi, i wanna creat an _Imagesearch / Mousemove script for an 3D/FPS Game and have Problems with the mousemove. In the game like Curveball(2D) its still works but in games like Battlefield (3D) are the absolute coordinates not really helpfull. Someone have an idea or an Example for me ?
  2. Ye thats what i mean So its will work with OpenCV ? Edit: I found an Tutorial. Thank you very much. Tutorial: http://www.pyimagesearch.com/2015/09/21/opencv-track-object-movement/
  3. Maybe yes. Example: Loading this model in the Script: http://tf3dm.com/3d-model/michael-townley-31342.html Start Script. Now its have to search this body on my Screen. (The Script have to know, how he will looks like from all sides: front,back,side and up) and moving the mouse to him.
  4. Sorry, but thats not what i mean. I wanna creat a script who works like _Imagesearch but for models and not for pictures.
  5. I thought of _Imagesearch but for 3D_Models
  6. I want that the script search for 3D-Model like a Person or something and then starting a func.
  7. Hi Autoit Community, do someone know, if is possible to creat an 3D-ModelSearch script ?
  8. Ok, last question: Why do i need the ConsoleWrite and... #include <Misc.au3> #include <MsgBoxConstants.au3> Local $hDLL = DllOpen("user32.dll") While 1 If _IsPressed("10", $hDLL) Then ConsoleWrite("_IsPressed - Shift Key was pressed." & @CRLF) $Specnaz = PixelSearch(1561, 181,1747, 280,0xC9B880,10) If IsArray($Specnaz) = True Then MouseClick("Left",0,0,1,10) EndIf ; Wait until key is released. am I need this part, or can i delete it ?: While _IsPressed("10", $hDLL) Sleep(250) WEnd ConsoleWrite("_IsPressed - Shift Key was released." & @CRLF) ElseIf _IsPressed("1B", $hDLL) Then MsgBox($MB_SYSTEMMODAL, "_IsPressed", "The Esc Key was pressed, therefore we will close the application.") ExitLoop EndIf Sleep(250) WEnd DllClose($hDLL)
  9. The "real" Script works fine, but in this script isnt the function "_IsPressed", also how i creat it that it works. ~Cant tell you the error-code, cause im not in my own PC.
  10. I wanna activate this Script with an Hotkey, but dont undertsand, the example of "_IsPressed".
  11. The real Script looks like this: HotKeySet("(F6)"),"_Exit") While 1 $Specnaz = PixelSearch(100,100,100,100,0x100) If IsArray($Specnaz) = True Then MouseClick("Left") EndIf WEnd Func _Exit() Exit EndFunc I want "_IsPressed" in this script. Can someone help me with it ?
  12. Found this script last day: HotKeySet("(F6)"),"_Exit") While 1 If Is_Pressed(10) Then $Specnaz = PixelSearch(100,100,100,100,0x100) If IsArray($Specnaz) = True Then MouseClick("Left") EndIf WEnd Func _Exit() Exit EndFunc Why do i get an Error if i try to start it ?
×
×
  • Create New...