Jump to content

32 Bit and 64 Bit OS Problems


Recommended Posts

I have made a Level stat updater I play my game on Windows 7 64 Bit and Windows 7 and Vista 32 bit. My problem is my script works fine on the 64 Bit OS but I can not get it to work on the 32 Bit OS's here is my code:

#include <Nomadmemory.au3>
SetPrivilege("SeDebugPrivilege", 1)


$ID = _MemoryOpen(ProcessExists("TwelveSky2.exe"))

While 1
    Level()
    Sleep(1000)
WEnd

Func Level()
    $Start = _MemoryRead(0x0008b9f8, $ID)
    If $Start = 48 Then
        $Level = _MemoryRead(0x014b4f62, $ID, "byte")
        MsgBox(4096, "Current Level", "Your Current Level Is  " & $Level)
        EndIf
        EndFunc

Any help/Ideas would be nice it is compiled X86 for 32 bit OS.

Link to comment
Share on other sites

Hmm, where have I seen this before. Oh, that's right there -> Windows Versions Help

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...