Jump to content

MarioRossi93i

Contributor
  • Posts

    658
  • Joined

  • Last visited

  • Days Won

    297

Posts posted by MarioRossi93i

  1. in the previous version of the game the library was located in

    /data/app/com.game/.../lib.so

    and of course it was in the list of ranges in gg. now it seems that the game no longer installs it and the game works without this library as this library does not exist in the game directories or in memory. However, the libraries are present in the installation apk file. both 32 and 64 bit. I can only find the apk file in memory in the gg list. I hope I was more clear

  2. i have a problem (ok more than one 😁). i can t find game lib in /data/game/lib nor in process/range list when i run gg, but it is present in apk. so i can t use chainer anymore because cd and cb are empty. any suggestion?

    sorry for my bad english

  3. local gg = gg
    local s = -7041975695332343808
    
    gg.clearResults()
    gg.searchNumber(s,0x20)
    
    if gg.getResultCount()==0 then
        print('No results found.')
        os.exit()
    end
    
    local t = gg.getResults(10)
    
    for i,v in ipairs(t) do
      v.flags = 0x10
      v.value = 0x64
      v.name = 'text'
      gg.setValues({v})
      gg.addListItems({v})
    end
    gg.clearResults()

    I suggest you read the gameguardian help to better understand how it works

  4. local gg = gg
    local s = 8243116118139470284
    local offset = { 0x30, 0x10 }
    local r = {}
    
    gg.clearResults()
    gg.searchNumber(s,0x20)
    
    if gg.getResultCount()==0 then
        print('No results found.')
        os.exit()
    end
    
    local t = gg.getResults(10)
    
    for i,v in ipairs(t) do
    
        r = {
            [1] = {
                address = v.address-offset[1],
                flags = 0x1,
                value = 0,
                name = 'Ram '..i..',1'
            },
            [2] = {
                address = v.address+offset[2],
                flags = 0x10,
                value = 0x30,
                freeze = true,
                name = 'Ram '..i..',2'
            },
        }
        gg.setValues(r)
        gg.addListItems(r)
    end
    gg.clearResults()

    this should works

  5. 13 hours ago, HaloStarrySky said:

    Hello,Tried version 12.0.2 on my gaming phone (Black Shark 5 Pro, Android 12),The system has obtained the root permission, followed your prompt, but failed to use the latest version of the script, and the modification failed.I need a better solution, thank you.

    Screenshot_2023-12-28-03-13-52-920_com.ea.games.r3_row.jpg

    the error seems very strange. it could be a problem with your profile, pm me your character2.dat and I'll see if I can solve it

  6. Real Racing 3 (v12.2.2) Time Trial No Penalty


    REAL RACING 3 - TIME TRIAL NO PENALTY


    Working RR3 version: 12.2.2

    Current script version: 12.2.2.2.3

     

    Description:

    Run time trials without worrying about penalties.

     

    Instructions:

    Enter time trial, run the script. Enjoy

     

    Known issues:

    It may not work with some emu/devices

     

    Video:

     

     


     

  7. Script is working fine. Try it on a new clean character2.dat, the problem could be your profile. The problem is caused when the script searches current currency values, for some reason with some profile them can t be find. i m thinking to update the script and add a manual mode to insert current values manually and avoid these problems...

  8. I'm still not very clear on how you know what the value is for the various currencies. I hope someone more able than me can help you.
    the script for editing currencies can be found here:

    https://gameguardian.net/forum/files/file/2403-real-racing-3-950-currency-hack-rgoldm/

    to get it working, launch the game, run the script and restart the game

    If the values are not saved upon restart, try running and finishing any race before restarting the game

    Before run any script disconnect any registerd account

  9. a script for changing the currency already exists, although some say they have problems using it.
    If you explain to me what exactly the script should do I can help you. you know the offset where the program returns the register value but I haven't understood how to obtain and modify the currency values

  10. memu has different memory structure, so the script can t run properly. version 10.6 works because it uses different search method (slower) than the current script.

    now I have to understand if it is possible to also implement the old search method or whether to replace the current one with the old one again to avoid these problems. further comments on this matter are welcome. anyway, I don't know when I will be able to release the new script, thanks for your patience

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.