-
Posts
1,858 -
Joined
-
Last visited
-
Days Won
124
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MonkeySAN
-
false = for non-encrypted value true = for encrypted value https://gameguardian.net/help/classgg.html#a14685d871e664a2f8ea74dc3293e428e
- 12 replies
-
1
-
try this gg.searchNumber("16384", gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0x04000000, 0x04ea7000)
- 12 replies
-
1
-
Real Racing 3 (12.0.2+) Currency Hack (R$,Gold,M$)
MonkeySAN replied to MarioRossi93i's topic in LUA scripts
thats strange.. i didnt set the region too but the script run just fine and worked perfect.(latest script)- 110 replies
-
- Real Racing 3
- RR3
-
(and 3 more)
Tagged with:
-
here try this..me modified it from @CmP script (credits to him). local function h1() --your hack here-- gg.alert("Hack 1 Done") end local function h2() --your hack here-- gg.alert("Hack 2 Done") end local function h3() --your hack here-- gg.alert("Hack 3 Done") end local hacks = { {name = ">> Hack 1", func = h1}, {name = ">> Hack 2", func = h2}, {name = ">> Hack 3", func = h3}, } local hackNames = {} local hackFunctions = {} for i, v in pairs(hacks) do table.insert(hackNames, v.name) table.insert(hackFunctions, v.func) end gg.setVisible(false) local choice = gg.choice(hackNames,nil,"Main Menu") if choice ~= nil then hackFunctions[choice]() end
-
this is example script by @CmP script end everytime after hack is done. How to create Menu with values (#2j8mdsbl)
-
-
my phone is 64bit. im using rooted F1 VM 64bit version. installed the game from Google Playstore. use @NoFear (credits to him) Xa search on page 2. so far...it worked everytime for now. Golden Ticket activated.
-
try this.. function Generate3(F) local p = gg.getResults(2) local t = {} t[1] = {} t[1].address = p[1].address - 0x10 t[1].flags = --value type here-- t[1].value = --new value here-- gg.setValues(t) gg.toast("Done") gg.clearResults() end
-
so im believe you use value 0.06 as base address to get to the upper address?
-
can you upload/post that part of your script here? so i may have a clear picture..
-
oh..wait you not talking about making a script here are you?
-
how about the lower one...? does the value is the same all the time? or any value below or above the 2 address that is fixed?
-
Weapons Throwing RPG 2: (small) hacking bounty
MonkeySAN replied to Solution6996's topic in Requests
Screenrecorder-2021-06-14-08-47-54-681.mp4 -
Weapons Throwing RPG 2: (small) hacking bounty
MonkeySAN replied to Solution6996's topic in Requests
yup..Level & Exp in Character screen. but mine was in Ca region. and Golds, Gems, Level & Exp are actually sit close to each other.(outside battle) -
Weapons Throwing RPG 2: (small) hacking bounty
MonkeySAN replied to Solution6996's topic in Requests
also Level and Exp.. -
Weapons Throwing RPG 2: (small) hacking bounty
MonkeySAN replied to Solution6996's topic in Requests
Golds and Gems are simple Dword search during battle.. -
-
Value is found in 32bit device with quad/hexa core but why not on 64bit octa core
MonkeySAN replied to Morpheus99's question in Help
something like this.. Screenrecorder-2021-06-11-22-40-38-879.mp4 where D is the difference between O the old value and N the new value. -
Value is found in 32bit device with quad/hexa core but why not on 64bit octa core
MonkeySAN replied to Morpheus99's question in Help
have you try unknown/fuzzy search and then refine to N = O + D ? -
Value is found in 32bit device with quad/hexa core but why not on 64bit octa core
MonkeySAN replied to Morpheus99's question in Help
well...actually there is a game zone in there but since it need our number to register to join and play so i cant help anymore. -
Value is found in 32bit device with quad/hexa core but why not on 64bit octa core
MonkeySAN replied to Morpheus99's question in Help
you try to hack this game...? -
local gg = gg function main() local menu = gg.choice({ "Veneno", "Porsche", "Chevrolet", "Dodge", "Exit"},nil,"car menu") if menu == nil then elseif menu == 1 then Veneno() elseif menu == 2 then Porsche() elseif menu == 3 then Chevrolet() elseif menu == 4 then Dodge() elseif menu == 5 then os.exit() end end function Veneno() gg.searchNumber("2.25", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(500, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0.25", gg.TYPE_FLOAT) gg.clearResults() end function Porsche() gg.searchNumber("2.56", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(500, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0.25", gg.TYPE_FLOAT) gg.clearResults() end function Chevrolet() --code here end function Dodge() --code here end while true do if gg.isVisible() then gg.setVisible(false) main() end end my mistake...there are some errors in the example script given by @Crystal_Mods100x that i misslook. try this one.
-
--main code function Audi() --example code-- gg.searchNumber("2.56", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(500, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0.25", gg.TYPE_FLOAT) end function Bmw() --code here end function Chevrolet() --code here end function Dodge() --code here end menu = gg.choice({ "Audi" "BMW" "Chevrolet" "Dodge" "Exit" },nil,"car menu") if menu == 1 then Audi() end if menu == 2 then Bmw() end if menu == 3 then Chevrolet() end if menu == 4 then Dodge() end if menu == 5 then os.exit() end if menu == nil then end
-
yeah its worked in non-rooted . credits to @NoFear for that. Golden Ticket activated...