Leaderboard
Popular Content
Showing content with the highest reputation on 08/22/2022 in all areas
-
2 points
-
2 points
-
Version 1.0.0
16,011 downloads
UPDATED 24.3.2: https://gameguardian.net/forum/files/file/3887-updated-pg3d-2432-actual-32bit-support-pixel-gun-3d-all-update-custom-lottery-rewards-hack-32bit-and-64bit/ The script has been patched, but @Michael1541 went through a lot of effort to make an updated version for the community! Switch to that one instead: PG3D Lottery and Sets script updated - LUA scripts - GameGuardian @Michael1541's updated version has also been patched . Want to update the script yourself? I have created a lotto sets template! Notice: Armv7 (32bit) is not currency supported, because I grinded 18 hours to make this and I'm really burnt out. But it should be finished in a few days. Update: I said I would add Armv7 (32bit) support in a few days when this script was first released, but it never came out. I know a lot of people are upset about this. The reason is that I tried multiple times to make it work but kept encountering bugs and running into issues. Sorry to all the 32bit users! Contact Me: User123456789#6424 on discord Disclaimer: This script is bannable! Getting too much currency within a certain time frame will flag your account as suspicous and you will be banned in the next ban wave. I recommend only getting at most 10,000 gems per day, or your account will have a high risk of being banned. Even if you do play it safe, you can still be banned. Warning: Using the custom value option and setting the reward values to over 45,000 will instantly ban you! After almost 18 hours straight of work, and a completely sleepless night, I finally present: Pixel Gun 3D All Update Custom Lottery and Set Event Hack! This is not the ordinary lotto sets script. Here's what unique about it: -This script will work on all game updates (the lowest game version tested is 22.4.3, but downgrading is impossible anyway), even future updates -The script supports various values, and lets you enter a custom value if it does not have what you want. Currently, only whole numbers (no decimal values like 1.5) in the range of 0 to 65536 are supported. -This script supports devices with both armv7 (32bit) and armv8 (64bit) architectures -This script employs multiple searches, to ensure that only the correct value is edited, and as a backup in case the mIain search does not work -This script has a small antiban feature that warns you when you try to edit the reward values over 45,000 I really hope you enjoy, and that this was worth staying up until 5 AM for!1 point -
1 point
-
1 point
-
Version 2.62.2 GG
2,025,789 downloads
Requires Android: Android 4.0 (IceCreamSandwich) or later. There is support for x86. For Android 4.2 or below use v2.60.0: GO Multiple (#2m858sgb) Video: Work without root via GO Multiple - GameGuardian (#53pockzu) Before installing the optimized version, uninstall the version from Google Play. Differences of the optimized version: no error 105.1 point -
Version 1.0.0
864 downloads
[NOTICE] : This is a concept, mean just an idea that can be used or readapted to any project. This script is subjected to change or update as & when any flaw detected so kindly do check-in frequently to know if this script is updated or not. [ABOUT SCRIPT] : Rock paper scissors is a hand game usually played between two people, in which each player simultaneously forms one of three shapes with an outstretched hand. These shapes are "rock", "paper", and "scissors". "Scissors" is identical to the two-fingered V sign except that it is pointed horizontally instead of being held upright in the air. - Game Rules WIN = +1 point for you LOOSE = +1 point for your aponent DRAW = +1 for you and your aponent No score limit. ----------------------- [WARNING] : For any re-uploads please give credit or enjoy your copyright-claim.1 point -
1 point
-
1 point
-
I wish I would have used this - it would have saved ages! Here's my solution: function armtohex(fullarm) progressalert("Converting edit value",false) fullhex = "" --Thanks to Enyby for the original arm hex converter I used code from: -- https://gameguardian.net/forum/files/file/2004-arm-converter/ for arm in string.gmatch(fullarm,'[^\r\n]+') do progressalert("Converting edit value",false) local addr = gg.getRangesList('libc.so') for i, v in ipairs(addr) do if v.type:sub(2,2) == 'w' then addr = {{address = v.start, flags = gg.TYPE_DWORD}} end end if not addr[1].address then print("Error occured converting arm code to hex: Failed to get address ", addr) gg.setVisible(true) os.exit() end if is64bit then --Armv8 (64bit) local old = gg.getValues(addr) addr[1].value = '~A8 '..arm local ok, err = pcall(gg.setValues, addr) local out if not ok then err = err:gsub("^.* '1': ", ''):gsub('\nlevel = 1.*$', '') print("Error occured converting arm code to hex: " .. err) gg.setVisible(true) os.exit() else out = gg.getValues(addr) out = out[1].value & 0xFFFFFFFF gg.setValues(old) if not hex then out = string.unpack('>I4', string.pack('<I4', out)) end out = string.format('%08X', out) fullhex = fullhex .. out end else --Armv7 (32bit) local old = gg.getValues(addr) addr[1].value = '~A '..arm local ok, err = pcall(gg.setValues, addr) local out if not ok then err = err:gsub("^.* '1': ", ''):gsub('\nlevel = 1.*$', '') print("Error occured converting arm code to hex: " .. err) gg.setVisible(true) os.exit() else out = gg.getValues(addr) out = out[1].value & 0xFFFFFFFF gg.setValues(old) if not hex then out = string.unpack('>I4', string.pack('<I4', out)) end out = string.format('%08X', out) fullhex = fullhex .. out end end end return(fullhex) end function hextodecimal(hex) progressalert("Converting edit value",false) --Remove spaces, then reverse bytes (ex: A1 B1 -> B1A1) oldhex = string.gsub(tostring(hex)," ","") hex = "" thisbyte = "" for letterindex = 1, #oldhex do thisbyte = thisbyte .. oldhex:sub(letterindex,letterindex) if #thisbyte == 2 then hex = thisbyte .. hex thisbyte = "" end end if not(string.sub(hex,1,2) == "0x") then hex = "0x" .. hex end return(tonumber(hex)) --[[ --thanks to ItsSC for this function (found at https://gameguardian.net/forum/topic/31634-converting-decimal-to-hex/) hex = tonumber(hex) gg.alert(tostring(tonumber(hex >= 0 and string.format("%X", tonumber(hex)) or string.format("%X", (hex~ 0xffffffffffffffff <<((math.floor(math.log(math.abs(hex))/math.log(10)) + 1) *4))),16))) return(tonumber(hex >= 0 and string.format("%X", tonumber(hex)) or string.format("%X", (hex~ 0xffffffffffffffff <<((math.floor(math.log(math.abs(hex))/math.log(10)) + 1) *4))),16)) --]] end1 point
-
The google sign in bug, i think everyone are experiencing it, it never worked for me also1 point
-
yeah that it, it is a lack of privilege, you should be more active to grind your rank and gain some privileges1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
working real racing 3 v9.6.0 Great Mario Thank you so much bro!1 point
-
I’m also running this script on version 9.6.0 using Bluestacks. Everything is working perfectly. Love how reliable Mario’s work is!1 point
-
1 point
-
Hey Mario ! i tried the slow version , the loading % is there but when i restart the game to see the changed currencies , it gets me an error ! can you PLEASE give me the encrypted values of the currencies ? i wanna do it manually , i know rr3 v8 , the values were "259200;3D;50D" , what are the new ones ?1 point
-
1 point
-
i tried this but no luck it shows an error (same as user Whatisthis16) bluestacks , rooted , su , rr3 v9.0.1 , latest version of game guardian ! help as soon as possible pls ! and Merry Christmas ! *NOTE! why in the video the real racing 3 icon in GG doesn't have the new Valkyrie ? is it even the 9.0.1 version ?1 point
-
View File OverDrive Premium Hack/Script Its a simple hack, with it you can hack gems, coins and damage stat. Submitter _GanGster_ Submitted 04/24/2019 Category LUA scripts1 point
-
0 points
-
best way to hack the money on this game is instead of hacking the initial money value hack the money value of the units. lets say wizards cost 100 gold buy 1 then put 100 in gg/sb/gk then buy another then go into gg/gk/sb and put 200. it should only come up with 1 value if not try buying another and adding the value then go into gg/gk/sb and put 300 and change it to 999999999 and sell it then u get the money... tadahh0 points