
MarioRossi93i
-
Posts
658 -
Joined
-
Last visited
-
Days Won
297
Content Type
Profiles
Forums
Downloads
Gallery
Posts posted by MarioRossi93i
-
-
-
@CmP I noticed that you assigned the values first and then called setValues and addListItems once after the for loop, but I instead made one call per loop. the question is is your script faster or is it the same in your opinion? Thanks in advance for your reply, best wishes for a great 2024!
0 -
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
0 -
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
0 -
set t[i].name then use gg.addListItems() after gg.setValues()
0 -
13 hours ago, HaloStarrySky said:
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
0 -
Real Racing 3 (v12.2.2) Time Trial No Penalty
REAL RACING 3 - TIME TRIAL NO PENALTY
Working RR3 version: 12.2.2Current 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:
-
Submitter
-
Submitted12/26/2023
-
Category
2 -
-
New version 12.0.2.5.5 released!
6 -
New version 12.0.2.5.4 released!
5 -
/sdcard/Android/data/com.ea.games.r3_row/files/doc/character2.dat
and backup file/s:
/sdcard/Android/data/com.ea.games.r3_row/files/.depot/character2.*
0 -
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...
0 -
i ll check it
0 -
-
New version 12.0.1.5.4 released!
7 -
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
0 -
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 values0 -
New version 12.0.1.1.2 released!
3 -
New version 12.0.1.5.4 released!
5 -
New version 12.0.1.3.4 released!
4 -
New version 12.0.1.4.14 released!
5 -
-
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
1 -
New version 11.6.1.3.2 released!
1 -
New version 11.6.1.4.12 released!
4
Game lib
in Help
Posted
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