Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/22/2021 in Posts

  1. 3 points
  2. Variable "lastIndex" indicates index of the last element of the table that will be edited, meaning that up to first 5 values will be edited. It can be less than 5 when saved list has less values, but it won't be more than 5. The approach is same, just little modification to the code is needed. For example, code of the second example from my previous post can be modified this way: local items = gg.getListItems() local count = #items local firstIndex = 3 local lastIndex = 7 if lastIndex > count then lastIndex = count end local newItems = {} for i = firstIndex, lastIndex do local item = items[i] newItems[#newItems + 1] = {address = item.address, flags = item.flags, value = "12345"} end gg.setValues(newItems)
    2 points
  3. Memory browser. Goto address. Xa range, select the lib you will be editing. Goto it's start address. Long press address. Offset calculator. Enter your offset (hex). Click goto
    2 points
  4. It's xor. Xor key = 320,017,171 Xor value = 1,363,350,291 Xor result = 1,112,539,136 Dword 1,112,539,136 = 52.0 float Edit: If you want 500,000,000 gold dword edit 1,593,669,691
    2 points
  5. View File Real Racing 3 (9.2.0) Update Autocompleter REAL RACING 3 UPDATE AUTOCOMPLETER Current version: 9.2.0.0.3 Beta Working RR3: 9.2.0 Description: Auto complete all the races added in latest update. One click script. Instructions: Run the script, then restart the game.That s all! Known issues: STILL BETA VERSION 64 BIT ONLY Video: Submitter MarioRossi93i Submitted 02/21/2021 Category LUA scripts  
    1 point
  6. 1 point
  7. 1 point
  8. Now i understand how calculate the Key without having the "0" Value 🖒 Dword = Float= real Value 1.471.427.347 = 3,9626291e14 = 1337 Real Value in float: 1337.0 float = 1.151.803.392 Dword "Dword of Real Value in float" XOR "Dword encrypted" = XOR Key 1.151.803.392 XOR 1.471.427.347 = 320.017.171
    1 point
  9. So debating on free public method.... Due to what's possible with it... Developer would patch it very quickly.
    1 point
  10. There are multiple ways to achieve the same result. Either you can use table returned by "gg.getListItems" function and modify required fields before calling "gg.setValues" function with this table as argument or you can create a new table based on values from returned table, but with required fields having different values on your choice and then call "gg.setValues" function passing the newly created table to it as argument. Example of implementing the first way: local items = gg.getListItems() local count = #items local lastIndex = 5 if lastIndex > count then lastIndex = count end for i = 1, lastIndex do items[i].value = "12345" end for i = lastIndex + 1, count do items[i] = nil end gg.setValues(items) Example of implementing the second way: local items = gg.getListItems() local count = #items local lastIndex = 5 if lastIndex > count then lastIndex = count end local newItems = {} for i = 1, lastIndex do local item = items[i] newItems[i] = {address = item.address, flags = item.flags, value = "12345"} end gg.setValues(newItems)
    1 point
  11. SINGLE CAR UNLOCKER Use this if main script doesn t work for you rr3_car_single_unlocker.v9.2.0.4.1.bin.lua
    1 point
  12. They won't help bro, they think they are gods, they talk in riddles n think they are clever, so won't divulge anything helpful as it's top secret like they the cheat mafia lol just search around as SOOO many better places than here to learn and get help with hacks and for free lol, most these cnuts want paying, like wtf stop begging niggaz like ur in third world country or something?!. Plzzz stop feeding their miniscule penises and egos!
    -1 points
×
×
  • 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.