Jump to content

nusaki

Active Members
  • Posts

    48
  • Joined

  • Last visited

nusaki's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. You are truly amazing But it’s hard to believe that it was you behind this. I have seen your older posts and it seems like you have done a quiet a bit of memory play yourself.
  2. My memory reading/writing scripts work fine in 6.1 but I soon as I upgrade to 8.1 they stop working. Is it something that was done on purpose or is here a way to fix my scripts so they work in 8.1 too?
  3. Yes, just read the score using memory. You think you can help me with this?
  4. It's just an example since every pc got solitaire on it. Returned value is always 0. (its should be ur score btw)
  5. This doesnt work , Can someone tell me why #include <NomadMemory.au3> $address = 0x000BB0E8 dim $Offset[5] = [0, 0x48, 0xA0, 0x68, 0x154] While 1 $Process = _MemoryOpen(ProcessExists("solitaire.exe")) If Not @error Then $Value = _MemoryPointerRead($address, $Process, $Offset) if Not @error Then ToolTip($Value[1],0,0) _MemoryClose($Process) EndIf Sleep(100) WEnd
  6. This doesnt work not sure why $value = PixelSearch(860, 450, 1060, 650, 0x73D544, "", "", $handle) If IsArray($value) Then If (860 < $value[0] < 960) And (450 < $value[1] < 550) Then
  7. Somehow it doesn’t work for me :
  8. Thank you Realm its exactly what i was looking for. Just one question is this just a fast as pixel search?
  9. Let’s say I want to do pixelsearch within coordinates 0, 0, 100, 100, but I would like to ignore pixels in area 10,10,20,20. Is it possible to achieve?
  10. yes I added autoit dll to com
  11. Hello, I have changed my windows to Windows 7 (64bit) and I’m running in to some problems using AutoIt script from my VB 2010. Public Declare Function AU3_MouseClick lib "autoitx.dll" (Optional ByVal szButton As String = "LEFT", Optional ByVal nX As Integer = -2147483647, Optional ByVal nY As Integer = -2147483647, Optional ByVal nClicks As Integer = 1, Optional ByVal nSpeed As Integer = -1) and AU3_MouseClick("Left") Just not working for me anymore. I tried AutoItX3_x64.dll, no luck. Please help Error: PInvoke restriction: cannot return variants.
  12. omg it worked But its so confusing now, can you give me example for MouseClick("left") please,
  13. Can't to add auto-it to VB 2010 .Net 2010 My code: Imports AutoItX3Lib Public Class Form1 Dim cAutoit As New AutoItX3Lib.AutoItX3 Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown If e.KeyCode = Keys.I Then cAutoit.Send("!k") End If End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub End Class I get "An error occurred creating the form. See Exception.InnerException for details. The error is: Retrieving the COM class factory for component with CLSID {1A671297-FA74-4422-80FA-6C5D8CE4DE04} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))." Please hep me solve it
  14. I get error: Error 1 Type 'int' is not defined. C:\Users\toto\AppData\Local\Temporary Projects\Aut Vb\Form1.vb 3 165 Aut Vb help please
  15. I'm not sure if that's what I was looking for How do i disable them by using your method
×
×
  • Create New...