View File
Motor Bike X3M Racing Game - unlimited coin
Run script after Fresh game loads
Find Bike with -99999999
Buy done
Submitter
Jamieq
Submitted
03/23/2025
Category
LUA scripts
View File
Offroad Adventure 4x4 Truck Games free trucks/currency
Instructions in script
Fresh game asks to buy truck don't load then restart For currency
Then load free trucks
Submitter
Jamieq
Submitted
01/22/2025
Category
LUA scripts
I tried downloading bin while signed out of this site & noticed file doesn't have permissions, that makes sense, it is games bin ,I didn't realize, sorry, still good method to save ur games status bin as back up or ur hacked versions
This 1 worked ,used to see if I can copy game status bin to storage download. I'm having a hard time finding or opening main game status bin (usually), I learn by trial & error or lucky enough to have a lua script with similar functions.
local gg = require("gg")
local function replaceGameStatus()
local packageName = "com.fingersoft.hcr2"
local originalPath = "/data/data/" .. packageName .. "/files/gamestatus.bin"
local moddedPath = "/storage/emulated/0/Download/gamestatus.bin"
if gg.getFile(originalPath) then
gg.copyFile(moddedPath, originalPath)
gg.alert("Game status file replaced successfully!")
else
gg.alert("Original game status file not found!")
end
end
replaceGameStatus()
This is script I wrote but won't read/ open file , need help
local file = io.open("/storage/emulated/0/data/data/files/game_status.bin", "wb")
if file then
local status = gg.getResults(gg.getResultsCount())
for i, v in ipairs(status) do
file:write(string.format("%s\n", v.value))
end
file:close()
gg.toast("Game status saved to Download folder.")
else
gg.toast("Failed to open file for writing.")
end
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.