Jump to content

Recent Posts

Showing topics.

Content Types


This stream auto-updates

  1. Past hour
  2. Today
  3. [ @APEXggV2 ] --- Haven't tried F1VM myself. Can you install magisk on it? It would be better that way. ---
  4. HorridModz

    Get process size

    I'm wondering if there's some way to do it by seeing the highest address in the game. Like if I can somehow find the base address of the game, then I do an address search for base address + 0x1AD27480 (450000000) - equivalent to 450 million, or 450 mb. Then if the search comes up with a result, game process size is at least 450 MB. Could that work?
  5. Sorry, I no longer maintain that script. That sucks, looks like pixel gun 3d is detecting gameguardian. This is device-specific, it seems, and not an issue with my script. So I can't help you - sorry! Perhaps you can ask around and see if anyone else has managed to circumvent this detection.
  6. Okay, that's what I figured. You're right about the block not being continuous; sorry. @CmPprovided actual code which solves that problem by trying to allocate continuously, but I have no idea how often that would work and the tendency of it to fail (I'm unaware of how the kernel decides where to allocate the memory). A solution to that might be to allocate the first block in an obscure region (maybe an unused memory region, like c++ heap, would work? This is a gray area for me, so I wouldn't really know.) where you are sure there's enough consecutive space. If I were you, I would first take CmP's code and play around with it, seeing if you encounter any issues.
  7. Yesterday
  8. 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.
  9. @NoFear๐‘ฉ๐’“๐’ ๐’„๐’๐’–๐’๐’… ๐’š๐’๐’– ๐’‘๐’๐’†๐’‚๐’”๐’† ๐’–๐’‘๐’…๐’‚๐’•๐’† ๐‘ฏ๐’๐’Ž๐’†๐’”๐’„๐’‚๐’‘๐’†๐’” ๐‘ฎ๐’๐’๐’…๐’†๐’ ๐’•๐’Š๐’„๐’Œ๐’†๐’• ๐’„๐’๐’…๐’†(๐‘ฎ๐‘ฎ) ? ๐‘ต๐’†๐’˜ ๐’”๐’†๐’‚๐’”๐’๐’ ๐’‚๐’‘๐’‘๐’†๐’“๐’†๐’…
  10. 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 ^^
  11. 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  
  12. Last week
  13. 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
  14. if you not mind can you please make screen record and share the video. how to change the value
  15. 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
  16. 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.
  17. 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.
  18. Hello, What dumper do you use? Thank you!
  19. 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
  20. 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
  21. 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
  22. 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
  23. 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
  24. 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  
  25. 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.
  26. 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?
  27. Not sure, but can you send deobfuscated version of the speed hack script?
  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.