Results 1 to 5 of 5

Thread: Read Process Memory of FIFA 15 - static Address

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2015
    Posts
    3

    Read Process Memory of FIFA 15 - static Address

    Hello Guys,

    at the moment I'm a bit desperate to find a solution for my project.
    Id like to scan the FIFA application with an interval of 50 ms to see if goals were scored.
    Then, if a goal was scored, send a Signal to my Arduino on COM3.

    The Arduino will get the signal and then do some stuff. (This is already finished and working fine)

    But im not sure yet how I can scan the FIFA process memory.
    I checked a few forums and watched some tutorials to get the process memory address in which the goal numbers are saved.
    I used Cheat Engine for this.

    But the construction of these adresses differ from everything I've seen in the tutorials.
    Name:  CheatEngineAdressen.jpg
Views: 2544
Size:  51.3 KBName:  CheatEngineAdressen.jpg
Views: 2544
Size:  51.3 KB

    The tutorials always show how to read the process memory with a dynamic address. But as I found out the ones that I got are static.

    Here an example of the code thats WORKING with my imported ReadWritingMemory.vb class(Application: solitaire, shows the score).

    Code:
       Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            Try
                MsgBox(ReadInteger("solitaire", &H36A86C))
            Catch ex As Exception
    
            End Try
    
        End Sub
    Now if I try that code with the FIFA application and my static address it would look like this.

    Code:
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            Try
                MsgBox(ReadInteger("fifa15", &H142890650))
            Catch ex As Exception
    
            End Try
    
    End Sub
    Here is the first Problem:
    The address is 9 digits long, so it can't be converted into an integer.
    If i take the shorter Adress (2890650) the value is wrong.


    Thank you very much in advance!

  2. #2

    Thread Starter
    New Member
    Join Date
    Jan 2015
    Posts
    3

    Re: Read Process Memory of FIFA 15 - static Address

    Problem solved. If anyone is interested in the code, pm me.

  3. #3
    New Member
    Join Date
    Feb 2015
    Posts
    2

    Re: Read Process Memory of FIFA 15 - static Address

    Hi,

    I am interested in your solution .. how did you?

  4. #4

    Thread Starter
    New Member
    Join Date
    Jan 2015
    Posts
    3

    Re: Read Process Memory of FIFA 15 - static Address

    Here are the two classes.

    http://www.4shared.com/file/5yeZ38Y9ce/Memory.html
    http://www.4shared.com/file/GTzs_Y6Fba/Win32.html

    add these to a new folder named "Cheat Engine"

    and the code which reads the FIFA15 process.

    http://www.4shared.com/file/M5A9AILwba/Form1.html

    (main part is in timer1_tick)


    This only works on windows x64.

  5. #5
    New Member
    Join Date
    Feb 2015
    Posts
    2

    Re: Read Process Memory of FIFA 15 - static Address

    Thanks so much!!!! good solution

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width