Jump to content

Recent Posts

Showing topics.

Content Types


This stream auto-updates

  1. Past hour
  2. if you not mind can you please make screen record and share the video. how to change the value
  3. Today
  4. 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
  5. 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.
  6. Hmm, game had an update? Which version your on.
  7. 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.
  8. Hello, What dumper do you use? Thank you!
  9. 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
  10. 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
  11. 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
  12. I reason is i have to write some code which is longer then 4kb , using your concept i can write the code. But what happened is i had to write a jump code at the end of 4kb to another allocated space, so i was wondering if there was any way to allocate an continues block of memory more then 4kb. But turns but there isn't such option. I think i will move forward with jump code. Thank you
  13. 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
  14. Yesterday
  15. 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
  16. 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  
  17. those can be search and edit with valueX4 but i think method by searching the joystick size value in the Option is much easier. Joystick value : S = 1, M = 2, L = 3 - search and refine until 1 result is left then goto the address. - from the joystick value apply offset to get to the Coins value. Coins offset = -F4 (64bit/armv8) the Gems value is the 4th address below Coins value.(offset = 10 for 64bit/armv8) edit the Dword value with X4. example : 500000X4
  18. 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.
  19. 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?
  20. Not sure, but can you send deobfuscated version of the speed hack script?
  21. 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
  22. Last week
  23. 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!
  24. 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
  25. Hi @kashM, go to appropiate section of the forum, for example: HELP Section. Then simply click on "Ask a question" button:
  26. write this in QWORD 00 00 A0 E3 1E FF 2F E1r
  27. View File Mad Skills Motocross 3 unlock all bikes / DIY money/gold 2 billion Instructions in script Log in to the game before hacks. This game will need uninstalled & downloaded Game designed to malfunction After hacks, especially if too many values are changed in video hack Best to do cash gold hack DYI With instructions in script Preferably, first time hacking game That way, ur 2nd time downloading game will be fine ,I've downloaded lots & and the game is acting up ,as if it knows I'm tryn to hack lol crazy games Submitter Jamieq Submitted 04/15/2024 Category LUA scripts  
  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.