Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/23/2023 in all areas

  1. After my research, I have found out that ~A8 FMOV S0, W0 generates the following HEX : 1E260000h. But according to armconverter.com 1E270000h is correct. And this works then also ... Problem solved.
    1 point
  2. i dont have with me anymore. but i make a new one : local n = {"Enable","Disable"} AC = n[1] function doAction() local ret = gg.alert(AC..' Hack ?' , 'YES', 'Cancel', 'Exit') if ret == 3 then os.exit() end -- exit from the script if ret == 1 then if AC == n[1] then --your hack here--turn ON gg.alert("Hack ON") AC = n[2] else -- your hack here--turn OFF gg.alert("Hack OFF") AC = n[1] end end end gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) doAction() end gg.sleep(100) end
    1 point
  3. Yes. You must write script that has the pointer that is responsible for pointing to a new memory address in which your health, time...etc is stored. You could do this by using backwards pointer search. In Unity games this goes quite efficient. Then must place the pointer in a while loop so that the moment the memory address changes of your health the script will automatically find the new memory address. Also if possible provide link to the game. So others can do tests and so that one can be more easily supported.
    1 point
  4. local lib = "libnative-lib.so:bss" local pi = gg.getRangesList(lib)[1].start local firstAddr = pi + offset--your offset local lastAddr = pi + offset--your offset local value1 = gg.getValues({{address = firstAddr, flags = 4}})[1].value local value2 = gg.getValues({{address = lastAddr, flags = 4}})[1].value gg.searchNumber(value1..";0~~0;"..value2.."::45", 4) local results = gg.getResults(gg.getResultsCount()) gg.editAll("500;0",4) gg.clearResults() for Battle Items : Speed Up Treasure Radar Rich Cat Cat CPU Cat Jobs Sniper the Cat
    1 point
  5. Hello, I would like to ask if anyone know the way to modify the key cards (red/green) to enter dungeon. I am familiar with the Nopaew exploit so I know how to buy a huge amount of them, but the only problem is that the game does not let people hold more than 8 red cards and 13 green cards (cap value) so I cannot purchase things like 99 key cards (It is actually doable as you can see from the picture below). So is there anyway to bypass the limit value in general so that the purchase of these cards are viable? Also about Light/Shadow, it would be great if anyone can share the tips to modifying their value as well, it will be much appreciated. Thanks in advance and have a nice day everyone! (Key cards mod - pretty doable since it is actually a service you can buy)
    1 point
  6. tested and working on last update
    1 point
  7. how to use the script, i dont understand
    1 point
  8. Screenrecorder-2023-09-17-23-13-06-316.mp4
    1 point
  9. there you go. @Jimeous guides definitely works here as well as mine.
    1 point
  10. if you can change those values,that means it will work. you just need to goto the address and find a way that work for you. care to share a screen shot any of the values when you goto the address? i think there is not that much different.
    1 point
  11. what are you trying to find? resources are simple and easy enough. search = ID;Current QTY;Max Storage::9 example : Wood ID = 2 currrent Qty = 20 max storage = 25 search = 2;20;25::9 @Jimeous guides for the resources is only for 32bit(armv7). for 64bit(armv8) you only need to increase the group size from 17 to 25. = 3B9AC9FFh~C4653600h;0;2;20;25::25
    1 point
  12. similar to what i got. only that my game is 32bit. so mine is 5D;9D;1.5F::13 dice at offset 24 from 1.5F
    1 point
  13. 0 points
×
×
  • 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.