Jump to content

Recent Posts

Showing topics.

Content Types


This stream auto-updates

  1. Today
  2. Mostly hacks are described here, on the forum. You can find function for fuel consumption hack by @AngelWolf, I believe it is at page 73. What I did - I just searched values in double (grams for weight and millilitres for fuel), changed them as it is. And, well, you know the result. You can keep playing with this, but no online options available for you anymore. For perk values hack I use 25% perks, which are mostly battle perks. Just search 0.25 Double. Other perk values may be harder to mess with since some data crashes game when being changed, and you have to change a lot of values to find correct ones.
  3. @NoFear๐‘ฉ๐’“๐’ ๐’„๐’๐’–๐’๐’… ๐’š๐’๐’– ๐’‘๐’๐’†๐’‚๐’”๐’† ๐’–๐’‘๐’…๐’‚๐’•๐’† ๐‘ฏ๐’๐’Ž๐’†๐’”๐’„๐’‚๐’‘๐’†๐’” ๐‘ฎ๐’๐’๐’…๐’†๐’ ๐’•๐’Š๐’„๐’Œ๐’†๐’• ๐’„๐’๐’…๐’†(๐‘ฎ๐‘ฎ) ? ๐‘ต๐’†๐’˜ ๐’”๐’†๐’‚๐’”๐’๐’ ๐’‚๐’‘๐’‘๐’†๐’“๐’†๐’…
  4. Hi guys, I'm new to modding and I've done a little research on changing the drop rates and all I got to know was about some fuzzy integer search stuff.. I didn't understand anything.. So can someone help me with this game? It's an online game but I'm not sure if the drop items are server-sided.. If it's possible then how do I change the drop rates? I've attached two screenshots.. The first one is how a battle stage looks like.. And the second one (see the right side of the page for the drop rates) is from the store (bundles / packs).. Is there any way to change it? I'd prefer changing the battle drop rates instead of the store one cuz I'm not going to buy much from stores, but if someone finds a way then I'd be thankful just as well.. Thanks in advance ^^
  5. Is there a way to hide environment / root checks in f1vm? some games have security checks and won't even open more than half a second after detecting app is loaded in a virtual space with root.. (rooting main device is NOT an option) thanks in advance for the help.
  6. View File Hungry Shark - World - free sharks/upgrades Instructions in script If fresh game, play until u die Load script & pick Reload if value doesn't change The first trial changed for me In the second trial, I had to reload certain values All worked Tutorial in script on how to hack values Submitter Jamieq Submitted 04/18/2024 Category LUA scripts  
  7. Yesterday
  8. There is good chance that in some cases it may work by allocating as many pages as needed one after another. Example implementation: local PAGE_SIZE = 0x1000 function allocateConsecutivePages(count, mode, address) count = count or 1 mode = mode or gg.PROT_READ | gg.PROT_EXEC address = address or 0 local firstPageAddress = gg.allocatePage(mode, address) if type(firstPageAddress) == "string" then return firstPageAddress end for i = 1, count - 1 do local desiredPageAddress = firstPageAddress + i * PAGE_SIZE local pageAddress = gg.allocatePage(mode, desiredPageAddress) if pageAddress ~= desiredPageAddress then -- failed to allocate page right after previous one, handle as needed end end return firstPageAddress end
  9. I'm on version 3.7.0 After the initial run, I was getting the libUE4.so error which I was able to resolve by putting the file in lib folder but then this happened... e66ea4e4-f3a0-4917-ad0b-4bc3de95dec3.mp4
  10. if you not mind can you please make screen record and share the video. how to change the value
  11. Is there a new script for the new version guys Or can some tell me how to auto complete level with game guardian manual search .. Thanks
  12. The index is not always the same so to avoid some runtime error you can make it dynamic local function getBaseAddr(lib) local rangeList = gg.getRangesList(lib) for _, v in ipairs(rangeList) do if v.state == "Xa" then return v.start end end end local libanogs = getBaseAddr("libanogs.so") gg.alert(tostring(libanogs + 0x129fc4)) -- "0x129fc4" is your function address -- The function will be located at libil2cpp.so + function address.
  13. DimoNULL

    Pause isn't working?

    Some games cannot be stopped, as well as using speedhack. As far as I know, this is due to the bit depth of the game. If you want to slow down or stop the game, you need to intercept the timer yourself through memory.
  14. Hello, What dumper do you use? Thank you!
  15. so basically I downloaded GameGuardian for the first time, I have literally zero prior experience when it comes to modifying softwares... And I was wondering if I could get any help as to how do I change body colour in a game called "Arena breakout" like shown in image
  16. And another question is how do i put the value in negative I tried - but nothing happend instead it increases I also increase valued alot but can't go in negative
  17. Game name - Another Dungeon So i was testing this game and it seems like it's protected game and if we try to change any values it will just disconnect us from game , I successfully edited a gold value in event but it throwed me out of the game just after changing value. My request is that can we bypass this protection?? I will attach the disconnect screenshot for you guys. Will be waiting for replies
  18. Do you just mean multiplication? Or do you want to add the value N separate times, with a pause in between? For the latter, you could write a simple script, like this: N = 10 -- how many times add = 100 -- value to add on every time timebetween = 1000 -- how long to wait between times (milliseconds) values = gg.getResults(gg.getResultsCount()) for _ in N do for i in values do values[i].value = values[i].value + add end gg.sleep(timebetween) end
  19. Last week
  20. No basically we are trying me and my 3 friends but as we dont really know much about GG we cant really go deep into stuff but we will try our hardest
  21. View File Sniper Zombies-offline- 2 billion cash/ many free guns Instructions in script Load - read - use Space on script for add ons Great template for your own script Submitter Jamieq Submitted 04/17/2024 Category LUA scripts  
  22. Hi @harpov, you're trying to pass a string as parameter. It is kind of difficult in Game Guardian, since it can only replace existing memory. String is handled as pointer, when function asking for string types, it is asking the pointer of the string not the string itself. It is because string can consist more than one character, which there will be several hex/bytes representing each character. You might want to read this: ARM Patching I've seen that you're only trying to make it return null. First, you need to check wether the function is void or returning something. If you're intending to disable the function just do: BX LR 1E FF 2F E1 If it's void, disabling the function can crash the game. Alternatively you can pass one character to the parameter. You can try to convert character to hex: UTF8 to Hex. For example, character 'a' is '0x61' in hex. So you can do something like this: MOV R1, 0x61 61 10 A0 E3 Note that you need to adjust the 'R1' or the register according to the parameter. First parameter is usually passed into R1 register, but since it is a string, you might looking for LDR/LDRB instruction inside the function and change it with the instruction above.
  23. i tried with temporary and it still crashes..in termux after enter command it asked for root permission and i granted..after it goes in next line with $ so it doesnt show any command success info or something?
  24. Not sure, but can you send deobfuscated version of the speed hack script?
  25. It not easy like that, xp is depend on milliseconds in 5 secs it possible to get 100-200 xp I can't really find it in 1 sec but xp is really depend on time in game too so I think I need to find a value of time in game to hack this game and change xp after end of stage But I really can't find it with fuzzy research, I find it 69m and I try to find until there only 29 value but I still not find xp value or time in game value TT
  26. Hello, Thanks for the replies, I wrote a message a while ago but I don't understand why it didn't get published. In the end I managed to get it working with Virtual Master, anyway I got banned after a few days so I didn't have much joy either. Best regards!
  27. I don't know, I would pick a game and do something simple like look for ammo value and change it with GG manually. Then try to make a Lua script for it. Download a simple Lua script from the forum and try to understand how it is making changes to the game. There is some nice documentation we use: https://gameguardian.net/help/classgg.html
  1. Load more activity
×
×
  • 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.