Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/14/2020 in all areas

  1. function toHexStringBigEndian(val) local hex = ""; local HEX_DIGIT_PATTERN = "%08x"; local MAGIC_CHARACTER = ".." string.gsub(string.format(HEX_DIGIT_PATTERN, val):sub(-8),MAGIC_CHARACTER, function(x) hex = x .. hex end) return hex end Learn some string manipulation, it's fun to learn :). Search for "Regex".
    2 points
  2. View File Real Racing 3 (12.1.2) Car Upgrader REAL RACING 3 CAR UPGRADER Working RR3 version: 12.0.1 Current version: 12.0.1.5.4 Description: Upgrade, repair and vip all cars (it does not work for cars using setup/drivers/principal upgrade system) without spend currencies. Instructions: See the script Known issues: Works only for cars that have not setup/drivers upgrades. Video: https://rumble.com/vw48ft-real-racing-3-10.2.0-car-upgrader-new.html Submitter MarioRossi93i Submitted 10/21/2020 Category LUA scripts  
    1 point
  3. Installed PS and support files, installed GG with root and without on phone then ran PS. Both times when I start GG, it tells me it can't start. It says it failed to run daemon. Any solutions? Thank you! See attached picture
    1 point
  4. Nice one bro, thank you again!!!
    1 point
  5. Alternatively to the solution above by ItsSC, the following function can be used to swap endianness of a string that represents 4-byte hex value: function swapEndianness(str) return (str:gsub('(..)(..)(..)(..)', '%4%3%2%1')) end
    1 point
  6. If you freeze it you gone have a lot of crashes. I usually do like this to find my hacks same as what you want to do: search = 100 --[giving a value] for i = 0, 100 do -- [it will loop/add +1 a 100 times] for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)] gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)] end -- [your ending the loop from the therd line] gg.getResults(10000) -- [taking the results] gg.editAll(-500, gg.TYPE_FLOAT) -- [edit to -500] gg.clearResults() -- [deletes the results after beeing edited] search = search + 1 -- [add +1 till the loop of 100 is finished] end -- [ending loop of the second line] -- [you can also choose to search in a specific region if you want to(for example)] local old = gg.getRanges(); gg.setRanges(gg.REGION_CODE_APP) -- [set region] search = 100 -- [giving a value] for i = 0, 100 do -- [it will loop/add +1 a 100 times] for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)] gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)] end -- [your ending the loop from the fifth line] gg.getResults(10000) -- [taking the results] gg.editAll(-500, gg.TYPE_FLOAT) -- [edit to -500] gg.clearResults() -- [deletes the results after beeing edited] search = search + 1 -- [add +1 till the loop of 100 is finished] end -- [ending loop of the fourth line] gg.setRanges(old) -- [return to original regions(the ones before you activated the script)] -- [if you want to freeze] local old = gg.getRanges(); gg.setRanges(gg.REGION_CODE_APP) -- [set region] search = 100 -- [giving a value] for i = 0, 100 do -- [it will loop/add +1 a 100 times] for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)] gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)] end -- [your ending the loop from the therd line] a=gg.getResults(10000) -- [taking the results] gg.addLustItems(a) -- [adding the results to the save list for i, v in ipairs(a) do -- [will take the results] a[i].value = '-500' -- [edit all to -500] a[i].freeze = true -- freeze the values a[i].freezeType = gg.freeze_NORMAL -- [Choose the freeze type] end gg.clearResults() -- [deletes the results after beeing edited] search = search + 1 -- [add +1 till the loop of 100 is finished] end -- [ending loop of the fourth line] gg.setRanges(old) -- [return to original regions(the ones before you activated the script)] -- [try it out :)] Have fun
    1 point
  7. it is mostly related with android update, i have same issue too. Seems like once you upgrade your OS you cant use gg without root.
    1 point
  8. function incrementSearch(startIndex, range) local INITIAL = 1 local INCREMENT = 1 local SLEEP_TIME = 50 for i = INITIAL, range do gg.searchNumber(startIndex, gg.TYPE_DWORD) startIndex = startIndex + INCREMENT end gg.sleep(SLEEP_TIME) -- Manipulate yourself end --usage incrementSearch(100,100);
    1 point
  9. 1 point
  10. Tried it and gg still had the same problem. This wasn't an issue till I got android 10
    1 point
  11. I was excessive. But I don't think you did race scores and xp... Maybe those triggered it. I just want it to be known. Ban is possible. And it will be your Nintendo account that is banned, not just your save.
    1 point
  12. Can be easy bypassed if you able read text before download something.
    1 point
×
×
  • 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.